SYMBOL INDEX (65920 symbols across 4761 files) FILE: .changeset/changelog.js function getRepo (line 6) | function getRepo() { FILE: __tests__/changelog.test.ts type GetGitHubInfo (line 8) | type GetGitHubInfo = typeof getGitHubInfo; method getInfo (line 20) | async getInfo({ commit, repo }) { method getInfoFromPullRequest (line 33) | async getInfoFromPullRequest({ pull, repo }) { FILE: dev/inputs.ts type InputKey (line 19) | type InputKey = keyof typeof inputs; function getInput (line 21) | function getInput(key: InputKey = (process.env.INPUT as InputKey) || 'op... FILE: dev/playground.py function run (line 9) | def run(): FILE: dev/playground.ts type MyPluginConfig (line 7) | type MyPluginConfig = { readonly name: 'myplugin' }; type MyPlugin (line 8) | type MyPlugin = DefinePlugin; function f (line 10) | function f(schema: IR.SchemaObject, plugin: MyPlugin['Instance']) { function run (line 20) | async function run() { FILE: dev/python/presets.ts type PluginConfig (line 3) | type PluginConfig = NonNullable[numbe... type PresetKey (line 27) | type PresetKey = keyof typeof presets; function getPreset (line 29) | function getPreset(key: PresetKey = (process.env.PRESET as PresetKey) ||... FILE: dev/typescript/presets.ts type PluginConfig (line 3) | type PluginConfig = NonNullable[numbe... type PresetKey (line 83) | type PresetKey = keyof typeof presets; function getPreset (line 85) | function getPreset(key: PresetKey = (process.env.PRESET as PresetKey) ||... FILE: docs/.vitepress/config/scripts/optimize-images.ts function processImages (line 120) | async function processImages() { FILE: docs/.vitepress/config/shared.ts method buildStart (line 117) | async buildStart() { FILE: docs/data/people.ts type Person (line 1) | type Person = { FILE: examples/openapi-ts-angular-common/src/app/app.component.ts class AppComponent (line 13) | class AppComponent { FILE: examples/openapi-ts-angular-common/src/app/demo/demo.ts class Demo (line 13) | class Demo { FILE: examples/openapi-ts-angular-common/src/client/@angular/common.gen.ts class PetServiceResources (line 330) | class PetServiceResources { method addPet (line 336) | public addPet( method updatePet (line 350) | public updatePet( method findPetsByStatus (line 364) | public findPetsByStatus( method findPetsByTags (line 378) | public findPetsByTags( method deletePet (line 392) | public deletePet( method getPetById (line 406) | public getPetById( method updatePetWithForm (line 420) | public updatePetWithForm( method uploadFile (line 434) | public uploadFile( class StoreServiceResources (line 445) | class StoreServiceResources { method getInventory (line 451) | public getInventory( method placeOrder (line 465) | public placeOrder( method deleteOrder (line 479) | public deleteOrder( method getOrderById (line 493) | public getOrderById( class UserServiceResources (line 504) | class UserServiceResources { method createUser (line 510) | public createUser( method createUsersWithListInput (line 524) | public createUsersWithListInput( method loginUser (line 538) | public loginUser( method logoutUser (line 552) | public logoutUser( method deleteUser (line 566) | public deleteUser( method getUserByName (line 580) | public getUserByName( method updateUser (line 594) | public updateUser( FILE: examples/openapi-ts-angular-common/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-angular-common/src/client/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: examples/openapi-ts-angular-common/src/client/client/types.gen.ts type ResponseStyle (line 17) | type ResponseStyle = 'data' | 'fields'; type Config (line 19) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 95) | interface ResolvedRequestOptions< type RequestResult (line 103) | type RequestResult< type ClientOptions (line 138) | interface ClientOptions { type MethodFn (line 144) | type MethodFn = < type SseFn (line 153) | type SseFn = < type RequestFn (line 162) | type RequestFn = < type RequestOptionsFn (line 172) | type RequestOptionsFn = < type BuildUrlFn (line 180) | type BuildUrlFn = < type Client (line 191) | type Client = CoreClient... type CreateClientConfig (line 209) | type CreateClientConfig = ( type TDataShape (line 213) | interface TDataShape { type OmitKeys (line 221) | type OmitKeys = Pick>; type Options (line 223) | type Options< FILE: examples/openapi-ts-angular-common/src/client/client/utils.gen.ts type PathSerializer (line 14) | interface PathSerializer { constant PATH_PARAM_RE (line 19) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 21) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 22) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 23) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 312) | type ErrInterceptor = ( type ReqInterceptor (line 319) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 321) | type ResInterceptor = ( class Interceptors (line 327) | class Interceptors { method clear (line 330) | clear(): void { method eject (line 334) | eject(id: number | Interceptor): void { method exists (line 341) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 346) | getInterceptorIndex(id: number | Interceptor): number { method update (line 353) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 362) | use(fn: Interceptor): number { type Middleware (line 368) | interface Middleware { FILE: examples/openapi-ts-angular-common/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-angular-common/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-angular-common/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-angular-common/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-angular-common/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-angular-common/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-angular-common/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-angular-common/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-angular-common/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-angular/src/app/app.component.ts class AppComponent (line 13) | class AppComponent { FILE: examples/openapi-ts-angular/src/app/demo/demo.ts class Demo (line 29) | class Demo { FILE: examples/openapi-ts-angular/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-angular/src/client/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: examples/openapi-ts-angular/src/client/client/types.gen.ts type ResponseStyle (line 17) | type ResponseStyle = 'data' | 'fields'; type Config (line 19) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 95) | interface ResolvedRequestOptions< type RequestResult (line 103) | type RequestResult< type ClientOptions (line 138) | interface ClientOptions { type MethodFn (line 144) | type MethodFn = < type SseFn (line 153) | type SseFn = < type RequestFn (line 162) | type RequestFn = < type RequestOptionsFn (line 172) | type RequestOptionsFn = < type BuildUrlFn (line 180) | type BuildUrlFn = < type Client (line 191) | type Client = CoreClient... type CreateClientConfig (line 209) | type CreateClientConfig = ( type TDataShape (line 213) | interface TDataShape { type OmitKeys (line 221) | type OmitKeys = Pick>; type Options (line 223) | type Options< FILE: examples/openapi-ts-angular/src/client/client/utils.gen.ts type PathSerializer (line 14) | interface PathSerializer { constant PATH_PARAM_RE (line 19) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 21) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 22) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 23) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 312) | type ErrInterceptor = ( type ReqInterceptor (line 319) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 321) | type ResInterceptor = ( class Interceptors (line 327) | class Interceptors { method clear (line 330) | clear(): void { method eject (line 334) | eject(id: number | Interceptor): void { method exists (line 341) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 346) | getInterceptorIndex(id: number | Interceptor): number { method update (line 353) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 362) | use(fn: Interceptor): number { type Middleware (line 368) | interface Middleware { FILE: examples/openapi-ts-angular/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-angular/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-angular/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-angular/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-angular/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-angular/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-angular/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-angular/src/client/sdk.gen.ts type Options (line 67) | type Options< class PetService (line 85) | class PetService { method addPet (line 91) | public addPet(options: Options( method findPetsByStatus (line 127) | public findPetsByStatus( method findPetsByTags (line 146) | public findPetsByTags( method deletePet (line 165) | public deletePet( method getPetById (line 180) | public getPetById( method updatePetWithForm (line 198) | public updatePetWithForm( method uploadFile (line 217) | public uploadFile( class StoreService (line 234) | class StoreService { method getInventory (line 240) | public getInventory( method placeOrder (line 257) | public placeOrder( method deleteOrder (line 275) | public deleteOrder( method getOrderById (line 288) | public getOrderById( class UserService (line 299) | class UserService { method createUser (line 305) | public createUser( method createUsersWithListInput (line 323) | public createUsersWithListInput( method loginUser (line 345) | public loginUser( method logoutUser (line 359) | public logoutUser( method deleteUser (line 373) | public deleteUser( method getUserByName (line 387) | public getUserByName( method updateUser (line 402) | public updateUser( FILE: examples/openapi-ts-angular/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-axios/src/App.tsx function App (line 47) | function App() { FILE: examples/openapi-ts-axios/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-axios/src/client/client/types.gen.ts type Config (line 16) | interface Config type RequestOptions (line 49) | interface RequestOptions< type ClientOptions (line 82) | interface ClientOptions { type RequestResult (line 87) | type RequestResult< type MethodFn (line 103) | type MethodFn = ... type CreateClientConfig (line 139) | type CreateClientConfig = ( type TDataShape (line 143) | interface TDataShape { type OmitKeys (line 151) | type OmitKeys = Pick>; type Options (line 153) | type Options< FILE: examples/openapi-ts-axios/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-axios/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-axios/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-axios/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-axios/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-axios/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-axios/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-axios/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-axios/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-fastify/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-fastify/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-fastify/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-fastify/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-fastify/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-fastify/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-fastify/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-fastify/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-fastify/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-fastify/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-fastify/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-fastify/src/client/fastify.gen.ts type RouteHandlers (line 13) | type RouteHandlers = { FILE: examples/openapi-ts-fastify/src/client/sdk.gen.ts type Options (line 17) | type Options< FILE: examples/openapi-ts-fastify/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Pet (line 7) | type Pet = { type Pets (line 13) | type Pets = Array; type Error (line 15) | type Error = { type ListPetsData (line 20) | type ListPetsData = { type ListPetsErrors (line 32) | type ListPetsErrors = { type ListPetsError (line 39) | type ListPetsError = ListPetsErrors[keyof ListPetsErrors]; type ListPetsResponses (line 41) | type ListPetsResponses = { type ListPetsResponse (line 48) | type ListPetsResponse = ListPetsResponses[keyof ListPetsResponses]; type CreatePetsData (line 50) | type CreatePetsData = { type CreatePetsErrors (line 57) | type CreatePetsErrors = { type CreatePetsError (line 64) | type CreatePetsError = CreatePetsErrors[keyof CreatePetsErrors]; type CreatePetsResponses (line 66) | type CreatePetsResponses = { type ShowPetByIdData (line 73) | type ShowPetByIdData = { type ShowPetByIdErrors (line 85) | type ShowPetByIdErrors = { type ShowPetByIdError (line 92) | type ShowPetByIdError = ShowPetByIdErrors[keyof ShowPetByIdErrors]; type ShowPetByIdResponses (line 94) | type ShowPetByIdResponses = { type ShowPetByIdResponse (line 101) | type ShowPetByIdResponse = ShowPetByIdResponses[keyof ShowPetByIdRespons... FILE: examples/openapi-ts-fastify/src/handlers.ts method createPets (line 4) | createPets(request, reply) { method listPets (line 7) | listPets(request, reply) { method showPetById (line 10) | showPetById(request, reply) { FILE: examples/openapi-ts-fetch/src/App.tsx function App (line 52) | function App() { FILE: examples/openapi-ts-fetch/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-fetch/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-fetch/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-fetch/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-fetch/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-fetch/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-fetch/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-fetch/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-fetch/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-fetch/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-fetch/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-fetch/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-fetch/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-ky/src/App.tsx function App (line 52) | function App() { FILE: examples/openapi-ts-ky/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-ky/src/client/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 13) | interface RetryOptions { type Config (line 34) | interface Config type RequestOptions (line 85) | interface RequestOptions< type ResolvedRequestOptions (line 120) | interface ResolvedRequestOptions< type RequestResult (line 128) | type RequestResult< type ClientOptions (line 163) | interface ClientOptions { type MethodFn (line 169) | type MethodFn = < type SseFn (line 178) | type SseFn = < type RequestFn (line 187) | type RequestFn = < type BuildUrlFn (line 197) | type BuildUrlFn = < type Client (line 208) | type Client = CoreClient... type CreateClientConfig (line 220) | type CreateClientConfig = ( type TDataShape (line 224) | interface TDataShape { type OmitKeys (line 232) | type OmitKeys = Pick>; type Options (line 234) | type Options< FILE: examples/openapi-ts-ky/src/client/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: examples/openapi-ts-ky/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-ky/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-ky/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-ky/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-ky/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-ky/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-ky/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-ky/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-ky/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-nestjs/src/app.module.ts class AppModule (line 9) | class AppModule {} FILE: examples/openapi-ts-nestjs/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-nestjs/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-nestjs/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-nestjs/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-nestjs/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-nestjs/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-nestjs/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-nestjs/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-nestjs/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-nestjs/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-nestjs/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-nestjs/src/client/nestjs.gen.ts type PetsControllerMethods (line 17) | type PetsControllerMethods = { type StoreControllerMethods (line 28) | type StoreControllerMethods = { FILE: examples/openapi-ts-nestjs/src/client/sdk.gen.ts type Options (line 24) | type Options< FILE: examples/openapi-ts-nestjs/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Pet (line 7) | type Pet = { type CreatePetBody (line 14) | type CreatePetBody = { type UpdatePetBody (line 19) | type UpdatePetBody = { type Error (line 25) | type Error = { type ListPetsData (line 30) | type ListPetsData = { type ListPetsResponses (line 40) | type ListPetsResponses = { type ListPetsResponse (line 47) | type ListPetsResponse = ListPetsResponses[keyof ListPetsResponses]; type CreatePetData (line 49) | type CreatePetData = { type CreatePetErrors (line 56) | type CreatePetErrors = { type CreatePetError (line 63) | type CreatePetError = CreatePetErrors[keyof CreatePetErrors]; type CreatePetResponses (line 65) | type CreatePetResponses = { type CreatePetResponse (line 72) | type CreatePetResponse = CreatePetResponses[keyof CreatePetResponses]; type DeletePetData (line 74) | type DeletePetData = { type DeletePetErrors (line 83) | type DeletePetErrors = { type DeletePetError (line 90) | type DeletePetError = DeletePetErrors[keyof DeletePetErrors]; type DeletePetResponses (line 92) | type DeletePetResponses = { type DeletePetResponse (line 99) | type DeletePetResponse = DeletePetResponses[keyof DeletePetResponses]; type ShowPetByIdData (line 101) | type ShowPetByIdData = { type ShowPetByIdErrors (line 110) | type ShowPetByIdErrors = { type ShowPetByIdError (line 117) | type ShowPetByIdError = ShowPetByIdErrors[keyof ShowPetByIdErrors]; type ShowPetByIdResponses (line 119) | type ShowPetByIdResponses = { type ShowPetByIdResponse (line 126) | type ShowPetByIdResponse = ShowPetByIdResponses[keyof ShowPetByIdRespons... type UpdatePetData (line 128) | type UpdatePetData = { type UpdatePetErrors (line 137) | type UpdatePetErrors = { type UpdatePetError (line 148) | type UpdatePetError = UpdatePetErrors[keyof UpdatePetErrors]; type UpdatePetResponses (line 150) | type UpdatePetResponses = { type UpdatePetResponse (line 157) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type GetInventoryData (line 159) | type GetInventoryData = { type GetInventoryResponses (line 166) | type GetInventoryResponses = { type GetInventoryResponse (line 175) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... FILE: examples/openapi-ts-nestjs/src/main.ts function bootstrap (line 7) | async function bootstrap() { FILE: examples/openapi-ts-nestjs/src/pets/pets.controller.ts class PetsController (line 7) | class PetsController implements Pick< method listPets (line 17) | async listPets(@Query() query?: ListPetsData['query']) { method createPet (line 24) | async createPet(@Body() body: CreatePetData['body']) { method showPetById (line 38) | async showPetById(@Param() path: ShowPetByIdData['path']) { FILE: examples/openapi-ts-nestjs/src/pets/pets.module.ts class PetsModule (line 8) | class PetsModule {} FILE: examples/openapi-ts-nestjs/src/store/store.controller.ts class StoreController (line 6) | class StoreController implements Pick }) { FILE: examples/openapi-ts-next/src/client/client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = ( FILE: examples/openapi-ts-next/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-next/src/client/client/types.gen.ts type Config (line 8) | interface Config type RequestOptions (line 38) | interface RequestOptions< type ResolvedRequestOptions (line 71) | interface ResolvedRequestOptions< type RequestResult (line 78) | type RequestResult< type ClientOptions (line 102) | interface ClientOptions { type MethodFn (line 107) | type MethodFn = ... type CreateClientConfig (line 143) | type CreateClientConfig = ( type TDataShape (line 147) | interface TDataShape { type OmitKeys (line 155) | type OmitKeys = Pick>; type Options (line 157) | type Options< FILE: examples/openapi-ts-next/src/client/client/utils.gen.ts type PathSerializer (line 13) | interface PathSerializer { constant PATH_PARAM_RE (line 18) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 20) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 21) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 22) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 325) | type ErrInterceptor = ( type ReqInterceptor (line 331) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 333) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 335) | class Interceptors { method clear (line 338) | clear(): void { method eject (line 342) | eject(id: number | Interceptor): void { method exists (line 349) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 354) | getInterceptorIndex(id: number | Interceptor): number { method update (line 361) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 370) | use(fn: Interceptor): number { type Middleware (line 376) | interface Middleware { FILE: examples/openapi-ts-next/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-next/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-next/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-next/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-next/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-next/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-next/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-next/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-next/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-ofetch/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-ofetch/src/client/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: examples/openapi-ts-ofetch/src/client/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 117) | interface RequestOptions< type ResolvedRequestOptions (line 151) | interface ResolvedRequestOptions< type RequestResult (line 159) | type RequestResult< type ClientOptions (line 194) | interface ClientOptions { type MethodFn (line 200) | type MethodFn = < type SseFn (line 209) | type SseFn = < type RequestFn (line 218) | type RequestFn = < type BuildUrlFn (line 228) | type BuildUrlFn = < type Client (line 239) | type Client = CoreClient... type CreateClientConfig (line 251) | type CreateClientConfig = ( type TDataShape (line 255) | interface TDataShape { type OmitKeys (line 263) | type OmitKeys = Pick>; type Options (line 265) | type Options< FILE: examples/openapi-ts-ofetch/src/client/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: examples/openapi-ts-ofetch/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-ofetch/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-ofetch/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-ofetch/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-ofetch/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-ofetch/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-ofetch/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-ofetch/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-ofetch/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-openai/src/App.tsx method auth (line 18) | auth() { function App (line 27) | function App() { FILE: examples/openapi-ts-openai/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: examples/openapi-ts-openai/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-openai/src/client/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: examples/openapi-ts-openai/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-openai/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-openai/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-openai/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-openai/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-openai/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-openai/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-openai/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-openai/src/client/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class OpenAi (line 49) | class OpenAi extends HeyApiClient { method constructor (line 52) | constructor(args?: { method listAssistants (line 65) | public listAssistants(options?: ... method createAssistant (line 78) | public createAssistant(options: ... method deleteAssistant (line 95) | public deleteAssistant(options: ... method getAssistant (line 108) | public getAssistant(options: Opt... method modifyAssistant (line 121) | public modifyAssistant(options: ... method createSpeech (line 138) | public createSpeech(options: Opt... method createTranscription (line 155) | public createTranscription(optio... method createTranslation (line 173) | public createTranslation(options... method listBatches (line 191) | public listBatches(options?: Opt... method createBatch (line 204) | public createBatch(options: Opti... method retrieveBatch (line 221) | public retrieveBatch(options: Op... method cancelBatch (line 234) | public cancelBatch(options: Opti... method listChatCompletions (line 249) | public listChatCompletions(optio... method createChatCompletion (line 277) | public createChatCompletion(opti... method deleteChatCompletion (line 296) | public deleteChatCompletion(opti... method getChatCompletion (line 311) | public getChatCompletion(options... method updateChatCompletion (line 327) | public updateChatCompletion(opti... method getChatCompletionMessages (line 347) | public getChatCompletionMessages... method createCompletion (line 360) | public createCompletion(options:... method listContainers (line 377) | public listContainers(options?: ... method createContainer (line 390) | public createContainer(options?:... method deleteContainer (line 407) | public deleteContainer(options: ... method retrieveContainer (line 420) | public retrieveContainer(options... method listContainerFiles (line 433) | public listContainerFiles(option... method createContainerFile (line 449) | public createContainerFile(optio... method deleteContainerFile (line 467) | public deleteContainerFile(optio... method retrieveContainerFile (line 480) | public retrieveContainerFile(opt... method retrieveContainerFileContent (line 493) | public retrieveContainerFileContent(options: ... method listEvals (line 524) | public listEvals(options?: Optio... method createEval (line 540) | public createEval(options: Optio... method deleteEval (line 558) | public deleteEval(options: Optio... method getEval (line 572) | public getEval(options: Options<... method updateEval (line 586) | public updateEval(options: Optio... method getEvalRuns (line 604) | public getEvalRuns(options: Opti... method createEvalRun (line 618) | public createEvalRun(options: Op... method deleteEvalRun (line 636) | public deleteEvalRun(options: Op... method getEvalRun (line 650) | public getEvalRun(options: Optio... method cancelEvalRun (line 664) | public cancelEvalRun(options: Op... method getEvalRunOutputItems (line 678) | public getEvalRunOutputItems(opt... method getEvalRunOutputItem (line 692) | public getEvalRunOutputItem(opti... method listFiles (line 705) | public listFiles(options?: Optio... method createFile (line 727) | public createFile(options: Optio... method deleteFile (line 745) | public deleteFile(options: Optio... method retrieveFile (line 758) | public retrieveFile(options: Opt... method downloadFile (line 771) | public downloadFile(options: Opt... method runGrader (line 785) | public runGrader(options: Option... method validateGrader (line 803) | public validateGrader(options: O... method listFineTuningCheckpointPermissions (line 823) | public listFineTuningCheckpointPermissions(optio... method retrieveFineTuningJob (line 911) | public retrieveFineTuningJob(opt... method cancelFineTuningJob (line 925) | public cancelFineTuningJob(optio... method listFineTuningJobCheckpoints (line 939) | public listFineTuningJobCheckpoints(opti... method pauseFineTuningJob (line 967) | public pauseFineTuningJob(option... method resumeFineTuningJob (line 981) | public resumeFineTuningJob(optio... method createImageEdit (line 994) | public createImageEdit(options: ... method createImage (line 1013) | public createImage(options: Opti... method createImageVariation (line 1030) | public createImageVariation(opti... method listModels (line 1048) | public listModels(options?: Opti... method deleteModel (line 1061) | public deleteModel(options: Opti... method retrieveModel (line 1074) | public retrieveModel(options: Op... method createModeration (line 1089) | public createModeration(options:... method adminApiKeysList (line 1106) | public adminApiKeysList(options?... method adminApiKeysCreate (line 1119) | public adminApiKeysCreate(option... method adminApiKeysDelete (line 1136) | public adminApiKeysDelete(option... method adminApiKeysGet (line 1149) | public adminApiKeysGet(options: ... method listAuditLogs (line 1162) | public listAuditLogs(options?: O... method listOrganizationCertificates (line 1176) | public listOrganizationCertificates(options... method activateOrganizationCertificates (line 1212) | public activateOrganizationCertificates(options... method getCertificate (line 1268) | public getCertificate(options: O... method modifyCertificate (line 1282) | public modifyCertificate(options... method usageCosts (line 1299) | public usageCosts(options: Optio... method listInvites (line 1312) | public listInvites(options?: Opt... method inviteUser (line 1325) | public inviteUser(options: Optio... method deleteInvite (line 1342) | public deleteInvite(options: Opt... method retrieveInvite (line 1355) | public retrieveInvite(options: O... method listProjects (line 1368) | public listProjects(options?: Op... method createProject (line 1381) | public createProject(options: Op... method retrieveProject (line 1398) | public retrieveProject(options: ... method modifyProject (line 1411) | public modifyProject(options: Op... method listProjectApiKeys (line 1428) | public listProjectApiKeys(option... method deleteProjectApiKey (line 1441) | public deleteProjectApiKey(optio... method retrieveProjectApiKey (line 1454) | public retrieveProjectApiKey(opt... method archiveProject (line 1467) | public archiveProject(options: O... method listProjectCertificates (line 1480) | public listProjectCertificates(o... method activateProjectCertificates (line 1496) | public activateProjectCertificates(opt... method updateProjectRateLimits (line 1545) | public updateProjectRateLimits(o... method listProjectServiceAccounts (line 1562) | public listProjectServiceAccounts(options:... method createProjectUser (line 1631) | public createProjectUser(options... method deleteProjectUser (line 1648) | public deleteProjectUser(options... method retrieveProjectUser (line 1661) | public retrieveProjectUser(optio... method modifyProjectUser (line 1674) | public modifyProjectUser(options... method usageAudioSpeeches (line 1691) | public usageAudioSpeeches(option... method usageAudioTranscriptions (line 1704) | public usageAudioTranscriptions(... method usageCodeInterpreterSessions (line 1717) | public usageCodeInterpreterSessions(options:... method usageEmbeddings (line 1743) | public usageEmbeddings(options: ... method usageImages (line 1756) | public usageImages(options: Opti... method usageModerations (line 1769) | public usageModerations(options:... method usageVectorStores (line 1782) | public usageVectorStores(options... method listUsers (line 1795) | public listUsers(options?: Optio... method deleteUser (line 1808) | public deleteUser(options: Optio... method retrieveUser (line 1821) | public retrieveUser(options: Opt... method modifyUser (line 1834) | public modifyUser(options: Optio... method createRealtimeSession (line 1858) | public createRealtimeSession(opt... method createRealtimeTranscriptionSession (line 1882) | public createRealtimeTranscriptionSession(options: O... method deleteResponse (line 1924) | public deleteResponse(options: O... method getResponse (line 1938) | public getResponse(options: Opti... method cancelResponse (line 1954) | public cancelResponse(options: O... method listInputItems (line 1967) | public listInputItems(options: O... method createThread (line 1980) | public createThread(options?: Op... method createThreadAndRun (line 1997) | public createThreadAndRun(option... method deleteThread (line 2014) | public deleteThread(options: Opt... method getThread (line 2027) | public getThread(options: Option... method modifyThread (line 2040) | public modifyThread(options: Opt... method listMessages (line 2057) | public listMessages(options: Opt... method createMessage (line 2070) | public createMessage(options: Op... method deleteMessage (line 2087) | public deleteMessage(options: Op... method getMessage (line 2100) | public getMessage(options: Optio... method modifyMessage (line 2113) | public modifyMessage(options: Op... method listRuns (line 2130) | public listRuns(options: Options... method createRun (line 2143) | public createRun(options: Option... method getRun (line 2160) | public getRun(options: Options(options: Option... method cancelRun (line 2190) | public cancelRun(options: Option... method listRunSteps (line 2203) | public listRunSteps(options: Opt... method getRunStep (line 2216) | public getRunStep(options: Optio... method submitToolOuputsToRun (line 2230) | public submitToolOuputsToRun(opt... method createUpload (line 2264) | public createUpload(options: Opt... method cancelUpload (line 2282) | public cancelUpload(options: Opt... method completeUpload (line 2302) | public completeUpload(options: O... method addUploadPart (line 2324) | public addUploadPart(options: Op... method listVectorStores (line 2342) | public listVectorStores(options?... method createVectorStore (line 2355) | public createVectorStore(options... method deleteVectorStore (line 2372) | public deleteVectorStore(options... method getVectorStore (line 2385) | public getVectorStore(options: O... method modifyVectorStore (line 2398) | public modifyVectorStore(options... method createVectorStoreFileBatch (line 2415) | public createVectorStoreFileBatch(o... method cancelVectorStoreFileBatch (line 2445) | public cancelVectorStoreFileBatch(opti... method createVectorStoreFile (line 2484) | public createVectorStoreFile(opt... method deleteVectorStoreFile (line 2501) | public deleteVectorStoreFile(opt... method getVectorStoreFile (line 2514) | public getVectorStoreFile(option... method updateVectorStoreFileAttributes (line 2527) | public updateVectorStoreFileAttributes(options... FILE: examples/openapi-ts-openai/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Webhooks (line 7) | type Webhooks = PostBatchCancelledWebhookRequest | PostBatchCompletedWeb... type AddUploadPartRequest (line 9) | type AddUploadPartRequest = { type AdminApiKey (line 20) | type AdminApiKey = { type ApiKeyList (line 77) | type ApiKeyList = { type AssistantObject (line 90) | type AssistantObject = { type AssistantStreamEvent (line 186) | type AssistantStreamEvent = ({ type AssistantSupportedModels (line 243) | type AssistantSupportedModels = typeof AssistantSupportedModels[keyof ty... type AssistantToolsCode (line 248) | type AssistantToolsCode = { type AssistantToolsFileSearch (line 258) | type AssistantToolsFileSearch = { type AssistantToolsFileSearchTypeOnly (line 281) | type AssistantToolsFileSearchTypeOnly = { type AssistantToolsFunction (line 291) | type AssistantToolsFunction = { type AssistantsApiResponseFormatOption (line 309) | type AssistantsApiResponseFormatOption = 'auto' | ResponseFormatText | R... type AssistantsApiToolChoiceOption (line 319) | type AssistantsApiToolChoiceOption = 'none' | 'auto' | 'required' | Assi... type AssistantsNamedToolChoice (line 324) | type AssistantsNamedToolChoice = { type AudioResponseFormat (line 353) | type AudioResponseFormat = typeof AudioResponseFormat[keyof typeof Audio... type AuditLog (line 358) | type AuditLog = { type AuditLogActor (line 830) | type AuditLogActor = { type AuditLogActorApiKey (line 842) | type AuditLogActorApiKey = { type AuditLogActorServiceAccount (line 858) | type AuditLogActorServiceAccount = { type AuditLogActorSession (line 868) | type AuditLogActorSession = { type AuditLogActorUser (line 879) | type AuditLogActorUser = { type AuditLogEventType (line 923) | type AuditLogEventType = typeof AuditLogEventType[keyof typeof AuditLogE... type AutoChunkingStrategyRequestParam (line 930) | type AutoChunkingStrategyRequestParam = { type Batch (line 937) | type Batch = { type BatchFileExpirationAfter (line 1019) | type BatchFileExpirationAfter = { type BatchRequestInput (line 1033) | type BatchRequestInput = { type BatchRequestOutput (line 1051) | type BatchRequestOutput = { type Certificate (line 1091) | type Certificate = { type ChatCompletionAllowedTools (line 1139) | type ChatCompletionAllowedTools = { type ChatCompletionAllowedToolsChoice (line 1173) | type ChatCompletionAllowedToolsChoice = { type ChatCompletionDeleted (line 1181) | type ChatCompletionDeleted = { type ChatCompletionFunctionCallOption (line 1200) | type ChatCompletionFunctionCallOption = { type ChatCompletionFunctions (line 1210) | type ChatCompletionFunctions = { type ChatCompletionList (line 1228) | type ChatCompletionList = { type ChatCompletionMessageCustomToolCall (line 1259) | type ChatCompletionMessageCustomToolCall = { type ChatCompletionMessageList (line 1289) | type ChatCompletionMessageList = { type ChatCompletionMessageToolCall (line 1331) | type ChatCompletionMessageToolCall = { type ChatCompletionMessageToolCallChunk (line 1355) | type ChatCompletionMessageToolCallChunk = { type ChatCompletionMessageToolCalls (line 1380) | type ChatCompletionMessageToolCalls = Array<({ type ChatCompletionModalities (line 1399) | type ChatCompletionModalities = Array<'text' | 'audio'>; type ChatCompletionNamedToolChoice (line 1406) | type ChatCompletionNamedToolChoice = { type ChatCompletionNamedToolChoiceCustom (line 1424) | type ChatCompletionNamedToolChoiceCustom = { type ChatCompletionRequestAssistantMessage (line 1443) | type ChatCompletionRequestAssistantMessage = { type ChatCompletionRequestAssistantMessageContentPart (line 1491) | type ChatCompletionRequestAssistantMessageContentPart = ({ type ChatCompletionRequestDeveloperMessage (line 1505) | type ChatCompletionRequestDeveloperMessage = { type ChatCompletionRequestFunctionMessage (line 1525) | type ChatCompletionRequestFunctionMessage = { type ChatCompletionRequestMessage (line 1540) | type ChatCompletionRequestMessage = ({ type ChatCompletionRequestMessageContentPartAudio (line 1560) | type ChatCompletionRequestMessageContentPartAudio = { type ChatCompletionRequestMessageContentPartFile (line 1584) | type ChatCompletionRequestMessageContentPartFile = { type ChatCompletionRequestMessageContentPartImage (line 1616) | type ChatCompletionRequestMessageContentPartImage = { type ChatCompletionRequestMessageContentPartRefusal (line 1636) | type ChatCompletionRequestMessageContentPartRefusal = { type ChatCompletionRequestMessageContentPartText (line 1653) | type ChatCompletionRequestMessageContentPartText = { type ChatCompletionRequestSystemMessage (line 1672) | type ChatCompletionRequestSystemMessage = { type ChatCompletionRequestSystemMessageContentPart (line 1687) | type ChatCompletionRequestSystemMessageContentPart = ChatCompletionReque... type ChatCompletionRequestToolMessage (line 1692) | type ChatCompletionRequestToolMessage = { type ChatCompletionRequestToolMessageContentPart (line 1707) | type ChatCompletionRequestToolMessageContentPart = ChatCompletionRequest... type ChatCompletionRequestUserMessage (line 1716) | type ChatCompletionRequestUserMessage = { type ChatCompletionRequestUserMessageContentPart (line 1732) | type ChatCompletionRequestUserMessageContentPart = ({ type ChatCompletionResponseMessage (line 1745) | type ChatCompletionResponseMessage = { type ChatCompletionRole (line 1851) | type ChatCompletionRole = typeof ChatCompletionRole[keyof typeof ChatCom... type ChatCompletionStreamOptions (line 1857) | type ChatCompletionStreamOptions = { type ChatCompletionStreamResponseDelta (line 1886) | type ChatCompletionStreamResponseDelta = { type ChatCompletionTokenLogprob (line 1917) | type ChatCompletionTokenLogprob = { type ChatCompletionTool (line 1955) | type ChatCompletionTool = { type ChatCompletionToolChoiceOption (line 1973) | type ChatCompletionToolChoiceOption = 'none' | 'auto' | 'required' | Cha... type ChunkingStrategyRequestParam (line 1978) | type ChunkingStrategyRequestParam = ({ type Click (line 1990) | type Click = { type CodeInterpreterFileOutput (line 2020) | type CodeInterpreterFileOutput = { type CodeInterpreterOutputImage (line 2046) | type CodeInterpreterOutputImage = { type CodeInterpreterOutputLogs (line 2063) | type CodeInterpreterOutputLogs = { type CodeInterpreterTextOutput (line 2080) | type CodeInterpreterTextOutput = { type CodeInterpreterTool (line 2099) | type CodeInterpreterTool = { type CodeInterpreterToolAuto (line 2120) | type CodeInterpreterToolAuto = { type CodeInterpreterToolCall (line 2138) | type CodeInterpreterToolCall = { type ComparisonFilter (line 2182) | type ComparisonFilter = { type CompleteUploadRequest (line 2204) | type CompleteUploadRequest = { type CompletionUsage (line 2220) | type CompletionUsage = { type CompoundFilter (line 2281) | type CompoundFilter = { type ComputerAction (line 2292) | type ComputerAction = ({ type ComputerScreenshotImage (line 2316) | type ComputerScreenshotImage = { type ComputerToolCall (line 2340) | type ComputerToolCall = { type ComputerToolCallOutput (line 2374) | type ComputerToolCallOutput = { type ComputerToolCallOutputResource (line 2405) | type ComputerToolCallOutputResource = ComputerToolCallOutput & { type ComputerToolCallSafetyCheck (line 2417) | type ComputerToolCallSafetyCheck = { type ContainerFileListResource (line 2432) | type ContainerFileListResource = { type ContainerFileResource (line 2458) | type ContainerFileResource = { type ContainerListResource (line 2489) | type ContainerListResource = { type ContainerResource (line 2515) | type ContainerResource = { type Content (line 2558) | type Content = InputContent | OutputContent; type Coordinate (line 2566) | type Coordinate = { type CostsResult (line 2582) | type CostsResult = { type CreateAssistantRequest (line 2607) | type CreateAssistantRequest = { type CreateChatCompletionRequest (line 2709) | type CreateChatCompletionRequest = CreateModelResponseProperties & { type CreateChatCompletionResponse (line 2934) | type CreateChatCompletionResponse = { type CreateChatCompletionStreamResponse (line 3001) | type CreateChatCompletionStreamResponse = { type CreateCompletionRequest (line 3074) | type CreateCompletionRequest = { type CreateCompletionResponse (line 3193) | type CreateCompletionResponse = { type CreateContainerBody (line 3242) | type CreateContainerBody = { type CreateContainerFileBody (line 3263) | type CreateContainerFileBody = { type CreateEmbeddingRequest (line 3275) | type CreateEmbeddingRequest = { type CreateEmbeddingResponse (line 3302) | type CreateEmbeddingResponse = { type CreateEvalCompletionsRunDataSource (line 3336) | type CreateEvalCompletionsRunDataSource = { type CreateEvalCustomDataSourceConfig (line 3429) | type CreateEvalCustomDataSourceConfig = { type CreateEvalItem (line 3451) | type CreateEvalItem = { type CreateEvalJsonlRunDataSource (line 3468) | type CreateEvalJsonlRunDataSource = { type CreateEvalLabelModelGrader (line 3490) | type CreateEvalLabelModelGrader = { type CreateEvalLogsDataSourceConfig (line 3524) | type CreateEvalLogsDataSourceConfig = { type CreateEvalRequest (line 3540) | type CreateEvalRequest = { type CreateEvalResponsesRunDataSource (line 3578) | type CreateEvalResponsesRunDataSource = { type CreateEvalRunRequest (line 3677) | type CreateEvalRunRequest = { type CreateEvalStoredCompletionsDataSourceConfig (line 3697) | type CreateEvalStoredCompletionsDataSourceConfig = { type CreateFileRequest (line 3710) | type CreateFileRequest = { type CreateFineTuningCheckpointPermissionRequest (line 3720) | type CreateFineTuningCheckpointPermissionRequest = { type CreateFineTuningJobRequest (line 3727) | type CreateFineTuningJobRequest = { type CreateImageEditRequest (line 3845) | type CreateImageEditRequest = { type CreateImageRequest (line 3926) | type CreateImageRequest = { type CreateImageVariationRequest (line 3999) | type CreateImageVariationRequest = { type CreateMessageRequest (line 4027) | type CreateMessageRequest = { type CreateModelResponseProperties (line 4062) | type CreateModelResponseProperties = ModelResponseProperties & { type CreateModerationRequest (line 4071) | type CreateModerationRequest = { type CreateModerationResponse (line 4094) | type CreateModerationResponse = { type CreateResponse (line 4285) | type CreateResponse = CreateModelResponseProperties & ResponseProperties... type CreateRunRequest (line 4347) | type CreateRunRequest = { type CreateSpeechRequest (line 4407) | type CreateSpeechRequest = { type CreateSpeechResponseStreamEvent (line 4439) | type CreateSpeechResponseStreamEvent = ({ type CreateThreadAndRunRequest (line 4445) | type CreateThreadAndRunRequest = { type CreateThreadRequest (line 4522) | type CreateThreadRequest = { type CreateTranscriptionRequest (line 4589) | type CreateTranscriptionRequest = { type CreateTranscriptionResponseJson (line 4646) | type CreateTranscriptionResponseJson = { type CreateTranscriptionResponseStreamEvent (line 4679) | type CreateTranscriptionResponseStreamEvent = ({ type CreateTranscriptionResponseVerboseJson (line 4688) | type CreateTranscriptionResponseVerboseJson = { type CreateTranslationRequest (line 4712) | type CreateTranslationRequest = { type CreateTranslationResponseJson (line 4740) | type CreateTranslationResponseJson = { type CreateTranslationResponseVerboseJson (line 4744) | type CreateTranslationResponseVerboseJson = { type CreateUploadRequest (line 4763) | type CreateUploadRequest = { type CreateVectorStoreFileBatchRequest (line 4791) | type CreateVectorStoreFileBatchRequest = { type CreateVectorStoreFileRequest (line 4800) | type CreateVectorStoreFileRequest = { type CreateVectorStoreRequest (line 4809) | type CreateVectorStoreRequest = { type CustomTool (line 4830) | type CustomTool = { type CustomToolCall (line 4875) | type CustomToolCall = { type CustomToolCallOutput (line 4909) | type CustomToolCallOutput = { type CustomToolChatCompletions (line 4938) | type CustomToolChatCompletions = { type DeleteAssistantResponse (line 4992) | type DeleteAssistantResponse = { type DeleteCertificateResponse (line 4998) | type DeleteCertificateResponse = { type DeleteFileResponse (line 5009) | type DeleteFileResponse = { type DeleteFineTuningCheckpointPermissionResponse (line 5015) | type DeleteFineTuningCheckpointPermissionResponse = { type DeleteMessageResponse (line 5030) | type DeleteMessageResponse = { type DeleteModelResponse (line 5036) | type DeleteModelResponse = { type DeleteThreadResponse (line 5042) | type DeleteThreadResponse = { type DeleteVectorStoreFileResponse (line 5048) | type DeleteVectorStoreFileResponse = { type DeleteVectorStoreResponse (line 5054) | type DeleteVectorStoreResponse = { type DoneEvent (line 5063) | type DoneEvent = { type DoubleClick (line 5074) | type DoubleClick = { type Drag (line 5099) | type Drag = { type EasyInputMessage (line 5130) | type EasyInputMessage = { type Embedding (line 5154) | type Embedding = { type Error (line 5170) | type Error = { type ErrorEvent (line 5180) | type ErrorEvent = { type ErrorResponse (line 5185) | type ErrorResponse = { type Eval (line 5200) | type Eval = { type EvalApiError (line 5240) | type EvalApiError = { type EvalCustomDataSourceConfig (line 5260) | type EvalCustomDataSourceConfig = { type EvalGraderLabelModel (line 5278) | type EvalGraderLabelModel = GraderLabelModel; type EvalGraderPython (line 5283) | type EvalGraderPython = GraderPython & { type EvalGraderScoreModel (line 5293) | type EvalGraderScoreModel = GraderScoreModel & { type EvalGraderStringCheck (line 5303) | type EvalGraderStringCheck = GraderStringCheck; type EvalGraderTextSimilarity (line 5308) | type EvalGraderTextSimilarity = GraderTextSimilarity & { type EvalItem (line 5325) | type EvalItem = { type EvalJsonlFileContentSource (line 5374) | type EvalJsonlFileContentSource = { type EvalJsonlFileIdSource (line 5395) | type EvalJsonlFileIdSource = { type EvalList (line 5412) | type EvalList = { type EvalLogsDataSourceConfig (line 5446) | type EvalLogsDataSourceConfig = { type EvalResponsesSource (line 5468) | type EvalResponsesSource = { type EvalRun (line 5523) | type EvalRun = { type EvalRunList (line 5643) | type EvalRunList = { type EvalRunOutputItem (line 5674) | type EvalRunOutputItem = { type EvalRunOutputItemList (line 5800) | type EvalRunOutputItemList = { type EvalStoredCompletionsDataSourceConfig (line 5833) | type EvalStoredCompletionsDataSourceConfig = { type EvalStoredCompletionsSource (line 5855) | type EvalStoredCompletionsSource = { type FileExpirationAfter (line 5884) | type FileExpirationAfter = { type FilePath (line 5901) | type FilePath = { type FileSearchRanker (line 5927) | type FileSearchRanker = typeof FileSearchRanker[keyof typeof FileSearchR... type FileSearchRankingOptions (line 5937) | type FileSearchRankingOptions = { type FileSearchToolCall (line 5952) | type FileSearchToolCall = { type FineTuneChatCompletionRequestAssistantMessage (line 6003) | type FineTuneChatCompletionRequestAssistantMessage = { type FineTuneChatRequestInput (line 6016) | type FineTuneChatRequestInput = { type FineTuneDpoHyperparameters (line 6034) | type FineTuneDpoHyperparameters = { type FineTuneDpoMethod (line 6060) | type FineTuneDpoMethod = { type FineTuneMethod (line 6067) | type FineTuneMethod = { type FineTunePreferenceRequestInput (line 6083) | type FineTunePreferenceRequestInput = { type FineTuneReinforcementHyperparameters (line 6105) | type FineTuneReinforcementHyperparameters = { type FineTuneReinforcementMethod (line 6146) | type FineTuneReinforcementMethod = { type FineTuneReinforcementRequestInput (line 6161) | type FineTuneReinforcementRequestInput = { type FineTuneSupervisedHyperparameters (line 6172) | type FineTuneSupervisedHyperparameters = { type FineTuneSupervisedMethod (line 6193) | type FineTuneSupervisedMethod = { type FineTuningCheckpointPermission (line 6203) | type FineTuningCheckpointPermission = { type FineTuningIntegration (line 6225) | type FineTuningIntegration = { type FineTuningJob (line 6268) | type FineTuningJob = { type FineTuningJobCheckpoint (line 6381) | type FineTuningJobCheckpoint = { type FineTuningJobEvent (line 6423) | type FineTuningJobEvent = { type FunctionObject (line 6456) | type FunctionObject = { type FunctionParameters (line 6477) | type FunctionParameters = { type FunctionToolCall (line 6488) | type FunctionToolCall = { type FunctionToolCallOutput (line 6528) | type FunctionToolCallOutput = { type FunctionToolCallOutputResource (line 6558) | type FunctionToolCallOutputResource = FunctionToolCallOutput & { type FunctionToolCallResource (line 6566) | type FunctionToolCallResource = FunctionToolCall & { type GraderLabelModel (line 6581) | type GraderLabelModel = { type GraderMulti (line 6610) | type GraderMulti = { type GraderPython (line 6632) | type GraderPython = { type GraderScoreModel (line 6657) | type GraderScoreModel = { type GraderStringCheck (line 6692) | type GraderStringCheck = { type GraderTextSimilarity (line 6721) | type GraderTextSimilarity = { type Image (line 6750) | type Image = { type ImageEditCompletedEvent (line 6769) | type ImageEditCompletedEvent = { type ImageEditPartialImageEvent (line 6812) | type ImageEditPartialImageEvent = { type ImageEditStreamEvent (line 6855) | type ImageEditStreamEvent = ({ type ImageGenCompletedEvent (line 6865) | type ImageGenCompletedEvent = { type ImageGenPartialImageEvent (line 6908) | type ImageGenPartialImageEvent = { type ImageGenStreamEvent (line 6951) | type ImageGenStreamEvent = ({ type ImageGenTool (line 6963) | type ImageGenTool = { type ImageGenToolCall (line 7039) | type ImageGenToolCall = { type ImageInputFidelity (line 7076) | type ImageInputFidelity = typeof ImageInputFidelity[keyof typeof ImageIn... type ImagesResponse (line 7083) | type ImagesResponse = { type ImagesUsage (line 7115) | type ImagesUsage = { type Includable (line 7187) | type Includable = typeof Includable[keyof typeof Includable]; type InputAudio (line 7195) | type InputAudio = { type InputContent (line 7214) | type InputContent = ({ type InputItem (line 7222) | type InputItem = ({ type InputMessage (line 7238) | type InputMessage = { type InputMessageContentList (line 7265) | type InputMessageContentList = Array; type InputMessageResource (line 7267) | type InputMessageResource = InputMessage & { type Invite (line 7278) | type Invite = { type InviteDeleteResponse (line 7326) | type InviteDeleteResponse = { type InviteListResponse (line 7335) | type InviteListResponse = { type InviteRequest (line 7355) | type InviteRequest = { type Item (line 7383) | type Item = ({ type ItemResource (line 7427) | type ItemResource = ({ type KeyPress (line 7467) | type KeyPress = { type ListAssistantsResponse (line 7482) | type ListAssistantsResponse = { type ListAuditLogsResponse (line 7490) | type ListAuditLogsResponse = { type ListBatchesResponse (line 7498) | type ListBatchesResponse = { type ListCertificatesResponse (line 7506) | type ListCertificatesResponse = { type ListFilesResponse (line 7514) | type ListFilesResponse = { type ListFineTuningCheckpointPermissionResponse (line 7522) | type ListFineTuningCheckpointPermissionResponse = { type ListFineTuningJobCheckpointsResponse (line 7530) | type ListFineTuningJobCheckpointsResponse = { type ListFineTuningJobEventsResponse (line 7538) | type ListFineTuningJobEventsResponse = { type ListMessagesResponse (line 7544) | type ListMessagesResponse = { type ListModelsResponse (line 7552) | type ListModelsResponse = { type ListPaginatedFineTuningJobsResponse (line 7557) | type ListPaginatedFineTuningJobsResponse = { type ListRunStepsResponse (line 7563) | type ListRunStepsResponse = { type ListRunsResponse (line 7571) | type ListRunsResponse = { type ListVectorStoreFilesResponse (line 7579) | type ListVectorStoreFilesResponse = { type ListVectorStoresResponse (line 7587) | type ListVectorStoresResponse = { type LocalShellExecAction (line 7601) | type LocalShellExecAction = { type LocalShellTool (line 7642) | type LocalShellTool = { type LocalShellToolCall (line 7655) | type LocalShellToolCall = { type LocalShellToolCallOutput (line 7685) | type LocalShellToolCallOutput = { type LogProbProperties (line 7712) | type LogProbProperties = { type McpApprovalRequest (line 7736) | type McpApprovalRequest = { type McpApprovalResponse (line 7770) | type McpApprovalResponse = { type McpApprovalResponseResource (line 7804) | type McpApprovalResponseResource = { type McpListTools (line 7838) | type McpListTools = { type McpListToolsTool (line 7872) | type McpListToolsTool = { type McpTool (line 7906) | type McpTool = { type McpToolCall (line 7979) | type McpToolCall = { type MessageContentImageFileObject (line 8022) | type MessageContentImageFileObject = { type MessageContentImageUrlObject (line 8044) | type MessageContentImageUrlObject = { type MessageContentRefusalObject (line 8066) | type MessageContentRefusalObject = { type MessageContentTextAnnotationsFileCitationObject (line 8079) | type MessageContentTextAnnotationsFileCitationObject = { type MessageContentTextAnnotationsFilePathObject (line 8103) | type MessageContentTextAnnotationsFilePathObject = { type MessageContentTextObject (line 8127) | type MessageContentTextObject = { type MessageDeltaContentImageFileObject (line 8146) | type MessageDeltaContentImageFileObject = { type MessageDeltaContentImageUrlObject (line 8172) | type MessageDeltaContentImageUrlObject = { type MessageDeltaContentRefusalObject (line 8198) | type MessageDeltaContentRefusalObject = { type MessageDeltaContentTextAnnotationsFileCitationObject (line 8215) | type MessageDeltaContentTextAnnotationsFileCitationObject = { type MessageDeltaContentTextAnnotationsFilePathObject (line 8247) | type MessageDeltaContentTextAnnotationsFilePathObject = { type MessageDeltaContentTextObject (line 8275) | type MessageDeltaContentTextObject = { type MessageDeltaObject (line 8299) | type MessageDeltaObject = { type MessageObject (line 8328) | type MessageObject = { type MessageRequestContentTextObject (line 8403) | type MessageRequestContentTextObject = { type MessageStreamEvent (line 8414) | type MessageStreamEvent = { type Metadata (line 8440) | type Metadata = { type Model (line 8449) | type Model = { type ModelIds (line 8468) | type ModelIds = ModelIdsShared | ModelIdsResponses; type ModelIdsResponses (line 8470) | type ModelIdsResponses = ModelIdsShared | 'o1-pro' | 'o1-pro-2025-03-19'... type ModelIdsShared (line 8472) | type ModelIdsShared = string | ChatModel; type ModelResponseProperties (line 8474) | type ModelResponseProperties = { type ModifyAssistantRequest (line 8521) | type ModifyAssistantRequest = { type ModifyCertificateRequest (line 8584) | type ModifyCertificateRequest = { type ModifyMessageRequest (line 8591) | type ModifyMessageRequest = { type ModifyRunRequest (line 8595) | type ModifyRunRequest = { type ModifyThreadRequest (line 8599) | type ModifyThreadRequest = { type Move (line 8629) | type Move = { type OpenAiFile (line 8653) | type OpenAiFile = { type OtherChunkingStrategyResponseParam (line 8701) | type OtherChunkingStrategyResponseParam = { type OutputAudio (line 8714) | type OutputAudio = { type OutputContent (line 8732) | type OutputContent = ({ type OutputItem (line 8738) | type OutputItem = ({ type OutputMessage (line 8772) | type OutputMessage = { type ParallelToolCalls (line 8804) | type ParallelToolCalls = boolean; type PartialImages (line 8815) | type PartialImages = number; type PredictionContent (line 8824) | type PredictionContent = { type Project (line 8843) | type Project = { type ProjectApiKey (line 8873) | type ProjectApiKey = { type ProjectApiKeyDeleteResponse (line 8908) | type ProjectApiKeyDeleteResponse = { type ProjectApiKeyListResponse (line 8914) | type ProjectApiKeyListResponse = { type ProjectCreateRequest (line 8922) | type ProjectCreateRequest = { type ProjectListResponse (line 8929) | type ProjectListResponse = { type ProjectRateLimit (line 8940) | type ProjectRateLimit = { type ProjectRateLimitListResponse (line 8979) | type ProjectRateLimitListResponse = { type ProjectRateLimitUpdateRequest (line 8987) | type ProjectRateLimitUpdateRequest = { type ProjectServiceAccount (line 9017) | type ProjectServiceAccount = { type ProjectServiceAccountApiKey (line 9040) | type ProjectServiceAccountApiKey = { type ProjectServiceAccountCreateRequest (line 9051) | type ProjectServiceAccountCreateRequest = { type ProjectServiceAccountCreateResponse (line 9058) | type ProjectServiceAccountCreateResponse = { type ProjectServiceAccountDeleteResponse (line 9070) | type ProjectServiceAccountDeleteResponse = { type ProjectServiceAccountListResponse (line 9076) | type ProjectServiceAccountListResponse = { type ProjectUpdateRequest (line 9084) | type ProjectUpdateRequest = { type ProjectUser (line 9094) | type ProjectUser = { type ProjectUserCreateRequest (line 9121) | type ProjectUserCreateRequest = { type ProjectUserDeleteResponse (line 9132) | type ProjectUserDeleteResponse = { type ProjectUserListResponse (line 9138) | type ProjectUserListResponse = { type ProjectUserUpdateRequest (line 9146) | type ProjectUserUpdateRequest = { type Prompt (line 9158) | type Prompt = { type RealtimeClientEvent (line 9174) | type RealtimeClientEvent = ({ type RealtimeClientEventConversationItemCreate (line 9210) | type RealtimeClientEventConversationItemCreate = { type RealtimeClientEventConversationItemDelete (line 9238) | type RealtimeClientEventConversationItemDelete = { type RealtimeClientEventConversationItemRetrieve (line 9260) | type RealtimeClientEventConversationItemRetrieve = { type RealtimeClientEventConversationItemTruncate (line 9289) | type RealtimeClientEventConversationItemTruncate = { type RealtimeClientEventInputAudioBufferAppend (line 9330) | type RealtimeClientEventInputAudioBufferAppend = { type RealtimeClientEventInputAudioBufferClear (line 9352) | type RealtimeClientEventInputAudioBufferClear = { type RealtimeClientEventInputAudioBufferCommit (line 9376) | type RealtimeClientEventInputAudioBufferCommit = { type RealtimeClientEventOutputAudioBufferClear (line 9395) | type RealtimeClientEventOutputAudioBufferClear = { type RealtimeClientEventResponseCancel (line 9412) | type RealtimeClientEventResponseCancel = { type RealtimeClientEventResponseCreate (line 9447) | type RealtimeClientEventResponseCreate = { type RealtimeClientEventSessionUpdate (line 9472) | type RealtimeClientEventSessionUpdate = { type RealtimeClientEventTranscriptionSessionUpdate (line 9488) | type RealtimeClientEventTranscriptionSessionUpdate = { type RealtimeConversationItem (line 9503) | type RealtimeConversationItem = { type RealtimeConversationItemWithReference (line 9571) | type RealtimeConversationItemWithReference = { type RealtimeResponse (line 9670) | type RealtimeResponse = { type RealtimeResponseCreateParams (line 9829) | type RealtimeResponseCreateParams = { type RealtimeServerEvent (line 9934) | type RealtimeServerEvent = ({ type RealtimeServerEventConversationCreated (line 10008) | type RealtimeServerEventConversationCreated = { type RealtimeServerEventConversationItemCreated (line 10044) | type RealtimeServerEventConversationItemCreated = { type RealtimeServerEventConversationItemDeleted (line 10069) | type RealtimeServerEventConversationItemDeleted = { type RealtimeServerEventConversationItemInputAudioTranscriptionCompleted (line 10097) | type RealtimeServerEventConversationItemInputAudioTranscriptionCompleted... type RealtimeServerEventConversationItemInputAudioTranscriptionDelta (line 10134) | type RealtimeServerEventConversationItemInputAudioTranscriptionDelta = { type RealtimeServerEventConversationItemInputAudioTranscriptionFailed (line 10167) | type RealtimeServerEventConversationItemInputAudioTranscriptionFailed = { type RealtimeServerEventConversationItemRetrieved (line 10213) | type RealtimeServerEventConversationItemRetrieved = { type RealtimeServerEventConversationItemTruncated (line 10234) | type RealtimeServerEventConversationItemTruncated = { type RealtimeServerEventError (line 10264) | type RealtimeServerEventError = { type RealtimeServerEventInputAudioBufferCleared (line 10307) | type RealtimeServerEventInputAudioBufferCleared = { type RealtimeServerEventInputAudioBufferCommitted (line 10325) | type RealtimeServerEventInputAudioBufferCommitted = { type RealtimeServerEventInputAudioBufferSpeechStarted (line 10359) | type RealtimeServerEventInputAudioBufferSpeechStarted = { type RealtimeServerEventInputAudioBufferSpeechStopped (line 10389) | type RealtimeServerEventInputAudioBufferSpeechStopped = { type RealtimeServerEventOutputAudioBufferCleared (line 10419) | type RealtimeServerEventOutputAudioBufferCleared = { type RealtimeServerEventOutputAudioBufferStarted (line 10441) | type RealtimeServerEventOutputAudioBufferStarted = { type RealtimeServerEventOutputAudioBufferStopped (line 10463) | type RealtimeServerEventOutputAudioBufferStopped = { type RealtimeServerEventRateLimitsUpdated (line 10485) | type RealtimeServerEventRateLimitsUpdated = { type RealtimeServerEventResponseAudioDelta (line 10521) | type RealtimeServerEventResponseAudioDelta = { type RealtimeServerEventResponseAudioDone (line 10557) | type RealtimeServerEventResponseAudioDone = { type RealtimeServerEventResponseAudioTranscriptDelta (line 10588) | type RealtimeServerEventResponseAudioTranscriptDelta = { type RealtimeServerEventResponseAudioTranscriptDone (line 10625) | type RealtimeServerEventResponseAudioTranscriptDone = { type RealtimeServerEventResponseContentPartAdded (line 10661) | type RealtimeServerEventResponseContentPartAdded = { type RealtimeServerEventResponseContentPartDone (line 10714) | type RealtimeServerEventResponseContentPartDone = { type RealtimeServerEventResponseCreated (line 10767) | type RealtimeServerEventResponseCreated = { type RealtimeServerEventResponseDone (line 10785) | type RealtimeServerEventResponseDone = { type RealtimeServerEventResponseFunctionCallArgumentsDelta (line 10801) | type RealtimeServerEventResponseFunctionCallArgumentsDelta = { type RealtimeServerEventResponseFunctionCallArgumentsDone (line 10838) | type RealtimeServerEventResponseFunctionCallArgumentsDone = { type RealtimeServerEventResponseOutputItemAdded (line 10873) | type RealtimeServerEventResponseOutputItemAdded = { type RealtimeServerEventResponseOutputItemDone (line 10898) | type RealtimeServerEventResponseOutputItemDone = { type RealtimeServerEventResponseTextDelta (line 10921) | type RealtimeServerEventResponseTextDelta = { type RealtimeServerEventResponseTextDone (line 10957) | type RealtimeServerEventResponseTextDone = { type RealtimeServerEventSessionCreated (line 10994) | type RealtimeServerEventSessionCreated = { type RealtimeServerEventSessionUpdated (line 11011) | type RealtimeServerEventSessionUpdated = { type RealtimeServerEventTranscriptionSessionUpdated (line 11028) | type RealtimeServerEventTranscriptionSessionUpdated = { type RealtimeSession (line 11043) | type RealtimeSession = { type RealtimeSessionCreateRequest (line 11275) | type RealtimeSessionCreateRequest = { type RealtimeSessionCreateResponse (line 11516) | type RealtimeSessionCreateResponse = { type RealtimeTranscriptionSessionCreateRequest (line 11712) | type RealtimeTranscriptionSessionCreateRequest = { type RealtimeTranscriptionSessionCreateResponse (line 11852) | type RealtimeTranscriptionSessionCreateResponse = { type Reasoning (line 11953) | type Reasoning = { type ReasoningEffort (line 11998) | type ReasoningEffort = typeof ReasoningEffort[keyof typeof ReasoningEffo... type ReasoningItem (line 12009) | type ReasoningItem = { type Response (line 12069) | type Response = ModelResponseProperties & ResponseProperties & { type ResponseAudioDeltaEvent (line 12141) | type ResponseAudioDeltaEvent = { type ResponseAudioDoneEvent (line 12162) | type ResponseAudioDoneEvent = { type ResponseAudioTranscriptDeltaEvent (line 12178) | type ResponseAudioTranscriptDeltaEvent = { type ResponseAudioTranscriptDoneEvent (line 12198) | type ResponseAudioTranscriptDoneEvent = { type ResponseCodeInterpreterCallCodeDeltaEvent (line 12213) | type ResponseCodeInterpreterCallCodeDeltaEvent = { type ResponseCodeInterpreterCallCodeDoneEvent (line 12239) | type ResponseCodeInterpreterCallCodeDoneEvent = { type ResponseCodeInterpreterCallCompletedEvent (line 12265) | type ResponseCodeInterpreterCallCompletedEvent = { type ResponseCodeInterpreterCallInProgressEvent (line 12287) | type ResponseCodeInterpreterCallInProgressEvent = { type ResponseCodeInterpreterCallInterpretingEvent (line 12309) | type ResponseCodeInterpreterCallInterpretingEvent = { type ResponseCompletedEvent (line 12331) | type ResponseCompletedEvent = { type ResponseContentPartAddedEvent (line 12351) | type ResponseContentPartAddedEvent = { type ResponseContentPartDoneEvent (line 12386) | type ResponseContentPartDoneEvent = { type ResponseCreatedEvent (line 12422) | type ResponseCreatedEvent = { type ResponseCustomToolCallInputDeltaEvent (line 12445) | type ResponseCustomToolCallInputDeltaEvent = { type ResponseCustomToolCallInputDoneEvent (line 12474) | type ResponseCustomToolCallInputDoneEvent = { type ResponseError (line 12501) | type ResponseError = { type ResponseErrorCode (line 12539) | type ResponseErrorCode = typeof ResponseErrorCode[keyof typeof ResponseE... type ResponseErrorEvent (line 12544) | type ResponseErrorEvent = { type ResponseFailedEvent (line 12575) | type ResponseFailedEvent = { type ResponseFileSearchCallCompletedEvent (line 12595) | type ResponseFileSearchCallCompletedEvent = { type ResponseFileSearchCallInProgressEvent (line 12620) | type ResponseFileSearchCallInProgressEvent = { type ResponseFileSearchCallSearchingEvent (line 12645) | type ResponseFileSearchCallSearchingEvent = { type ResponseFormatJsonObject (line 12676) | type ResponseFormatJsonObject = { type ResponseFormatJsonSchema (line 12690) | type ResponseFormatJsonSchema = { type ResponseFormatJsonSchemaSchema (line 12734) | type ResponseFormatJsonSchemaSchema = { type ResponseFormatText (line 12744) | type ResponseFormatText = { type ResponseFormatTextGrammar (line 12758) | type ResponseFormatTextGrammar = { type ResponseFormatTextPython (line 12776) | type ResponseFormatTextPython = { type ResponseFunctionCallArgumentsDeltaEvent (line 12786) | type ResponseFunctionCallArgumentsDeltaEvent = { type ResponseFunctionCallArgumentsDoneEvent (line 12816) | type ResponseFunctionCallArgumentsDoneEvent = { type ResponseImageGenCallCompletedEvent (line 12842) | type ResponseImageGenCallCompletedEvent = { type ResponseImageGenCallGeneratingEvent (line 12867) | type ResponseImageGenCallGeneratingEvent = { type ResponseImageGenCallInProgressEvent (line 12892) | type ResponseImageGenCallInProgressEvent = { type ResponseImageGenCallPartialImageEvent (line 12917) | type ResponseImageGenCallPartialImageEvent = { type ResponseInProgressEvent (line 12947) | type ResponseInProgressEvent = { type ResponseIncompleteEvent (line 12968) | type ResponseIncompleteEvent = { type ResponseItemList (line 12988) | type ResponseItemList = { type ResponseLogProb (line 13017) | type ResponseLogProb = { type ResponseMcpCallArgumentsDeltaEvent (line 13049) | type ResponseMcpCallArgumentsDeltaEvent = { type ResponseMcpCallArgumentsDoneEvent (line 13079) | type ResponseMcpCallArgumentsDoneEvent = { type ResponseMcpCallCompletedEvent (line 13109) | type ResponseMcpCallCompletedEvent = { type ResponseMcpCallFailedEvent (line 13134) | type ResponseMcpCallFailedEvent = { type ResponseMcpCallInProgressEvent (line 13159) | type ResponseMcpCallInProgressEvent = { type ResponseMcpListToolsCompletedEvent (line 13184) | type ResponseMcpListToolsCompletedEvent = { type ResponseMcpListToolsFailedEvent (line 13209) | type ResponseMcpListToolsFailedEvent = { type ResponseMcpListToolsInProgressEvent (line 13234) | type ResponseMcpListToolsInProgressEvent = { type ResponseModalities (line 13266) | type ResponseModalities = Array<'text' | 'audio'>; type ResponseOutputItemAddedEvent (line 13271) | type ResponseOutputItemAddedEvent = { type ResponseOutputItemDoneEvent (line 13297) | type ResponseOutputItemDoneEvent = { type ResponseOutputTextAnnotationAddedEvent (line 13326) | type ResponseOutputTextAnnotationAddedEvent = { type ResponsePromptVariables (line 13367) | type ResponsePromptVariables = { type ResponseProperties (line 13371) | type ResponseProperties = { type ResponseQueuedEvent (line 13460) | type ResponseQueuedEvent = { type ResponseReasoningSummaryPartAddedEvent (line 13478) | type ResponseReasoningSummaryPartAddedEvent = { type ResponseReasoningSummaryPartDoneEvent (line 13523) | type ResponseReasoningSummaryPartDoneEvent = { type ResponseReasoningSummaryTextDeltaEvent (line 13568) | type ResponseReasoningSummaryTextDeltaEvent = { type ResponseReasoningSummaryTextDoneEvent (line 13604) | type ResponseReasoningSummaryTextDoneEvent = { type ResponseReasoningTextDeltaEvent (line 13640) | type ResponseReasoningTextDeltaEvent = { type ResponseReasoningTextDoneEvent (line 13676) | type ResponseReasoningTextDoneEvent = { type ResponseRefusalDeltaEvent (line 13712) | type ResponseRefusalDeltaEvent = { type ResponseRefusalDoneEvent (line 13748) | type ResponseRefusalDoneEvent = { type ResponseStreamEvent (line 13781) | type ResponseStreamEvent = ({ type ResponseStreamOptions (line 13893) | type ResponseStreamOptions = { type ResponseTextDeltaEvent (line 13910) | type ResponseTextDeltaEvent = { type ResponseTextDoneEvent (line 13950) | type ResponseTextDoneEvent = { type ResponseUsage (line 13992) | type ResponseUsage = { type ResponseWebSearchCallCompletedEvent (line 14030) | type ResponseWebSearchCallCompletedEvent = { type ResponseWebSearchCallInProgressEvent (line 14055) | type ResponseWebSearchCallInProgressEvent = { type ResponseWebSearchCallSearchingEvent (line 14080) | type ResponseWebSearchCallSearchingEvent = { type RunCompletionUsage (line 14105) | type RunCompletionUsage = { type RunGraderRequest (line 14123) | type RunGraderRequest = { type RunGraderResponse (line 14156) | type RunGraderResponse = { type RunObject (line 14197) | type RunObject = { type RunStepCompletionUsage (line 14320) | type RunStepCompletionUsage = { type RunStepDeltaObject (line 14341) | type RunStepDeltaObject = { type RunStepDeltaStepDetailsMessageCreationObject (line 14358) | type RunStepDeltaStepDetailsMessageCreationObject = { type RunStepDeltaStepDetailsToolCallsCodeObject (line 14376) | type RunStepDeltaStepDetailsToolCallsCodeObject = { type RunStepDeltaStepDetailsToolCallsCodeOutputImageObject (line 14411) | type RunStepDeltaStepDetailsToolCallsCodeOutputImageObject = { type RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject (line 14433) | type RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject = { type RunStepDeltaStepDetailsToolCallsFileSearchObject (line 14451) | type RunStepDeltaStepDetailsToolCallsFileSearchObject = { type RunStepDeltaStepDetailsToolCallsFunctionObject (line 14475) | type RunStepDeltaStepDetailsToolCallsFunctionObject = { type RunStepDeltaStepDetailsToolCallsObject (line 14512) | type RunStepDeltaStepDetailsToolCallsObject = { type RunStepDetailsMessageCreationObject (line 14529) | type RunStepDetailsMessageCreationObject = { type RunStepDetailsToolCallsCodeObject (line 14547) | type RunStepDetailsToolCallsCodeObject = { type RunStepDetailsToolCallsCodeOutputImageObject (line 14578) | type RunStepDetailsToolCallsCodeOutputImageObject = { type RunStepDetailsToolCallsCodeOutputLogsObject (line 14596) | type RunStepDetailsToolCallsCodeOutputLogsObject = { type RunStepDetailsToolCallsFileSearchObject (line 14610) | type RunStepDetailsToolCallsFileSearchObject = { type RunStepDetailsToolCallsFileSearchRankingOptionsObject (line 14636) | type RunStepDetailsToolCallsFileSearchRankingOptionsObject = { type RunStepDetailsToolCallsFileSearchResultObject (line 14649) | type RunStepDetailsToolCallsFileSearchResultObject = { type RunStepDetailsToolCallsFunctionObject (line 14680) | type RunStepDetailsToolCallsFunctionObject = { type RunStepDetailsToolCallsObject (line 14713) | type RunStepDetailsToolCallsObject = { type RunStepObject (line 14731) | type RunStepObject = { type RunStepStreamEvent (line 14805) | type RunStepStreamEvent = { type RunStreamEvent (line 14828) | type RunStreamEvent = { type RunToolCallObject (line 14863) | type RunToolCallObject = { type Screenshot (line 14893) | type Screenshot = { type Scroll (line 14908) | type Scroll = { type ServiceTier (line 14965) | type ServiceTier = typeof ServiceTier[keyof typeof ServiceTier]; type SpeechAudioDeltaEvent (line 14970) | type SpeechAudioDeltaEvent = { type SpeechAudioDoneEvent (line 14986) | type SpeechAudioDoneEvent = { type StaticChunkingStrategy (line 15012) | type StaticChunkingStrategy = { type StaticChunkingStrategyRequestParam (line 15031) | type StaticChunkingStrategyRequestParam = { type StaticChunkingStrategyResponseParam (line 15042) | type StaticChunkingStrategyResponseParam = { type StopConfiguration (line 15057) | type StopConfiguration = string | Array; type SubmitToolOutputsRunRequest (line 15059) | type SubmitToolOutputsRunRequest = { type TextResponseFormatConfiguration (line 15096) | type TextResponseFormatConfiguration = ({ type TextResponseFormatJsonSchema (line 15111) | type TextResponseFormatJsonSchema = { type ThreadObject (line 15145) | type ThreadObject = { type ThreadStreamEvent (line 15184) | type ThreadStreamEvent = { type ToggleCertificatesRequest (line 15193) | type ToggleCertificatesRequest = { type Tool (line 15201) | type Tool = ({ type ToolChoiceAllowed (line 15227) | type ToolChoiceAllowed = { type ToolChoiceCustom (line 15266) | type ToolChoiceCustom = { type ToolChoiceFunction (line 15283) | type ToolChoiceFunction = { type ToolChoiceMcp (line 15300) | type ToolChoiceMcp = { type ToolChoiceOptions (line 15349) | type ToolChoiceOptions = typeof ToolChoiceOptions[keyof typeof ToolChoic... type ToolChoiceTypes (line 15358) | type ToolChoiceTypes = { type TranscriptTextDeltaEvent (line 15377) | type TranscriptTextDeltaEvent = { type TranscriptTextDoneEvent (line 15414) | type TranscriptTextDoneEvent = { type TranscriptTextUsageDuration (line 15454) | type TranscriptTextUsageDuration = { type TranscriptTextUsageTokens (line 15470) | type TranscriptTextUsageTokens = { type TranscriptionChunkingStrategy (line 15505) | type TranscriptionChunkingStrategy = 'auto' | VadConfig; type TranscriptionInclude (line 15509) | type TranscriptionInclude = typeof TranscriptionInclude[keyof typeof Tra... type TranscriptionSegment (line 15511) | type TranscriptionSegment = { type TranscriptionWord (line 15554) | type TranscriptionWord = { type TruncationObject (line 15574) | type TruncationObject = { type Type (line 15591) | type Type = { type UpdateVectorStoreFileAttributesRequest (line 15605) | type UpdateVectorStoreFileAttributesRequest = { type UpdateVectorStoreRequest (line 15609) | type UpdateVectorStoreRequest = { type Upload (line 15624) | type Upload = { type UploadCertificateRequest (line 15660) | type UploadCertificateRequest = { type UploadPart (line 15677) | type UploadPart = { type UsageAudioSpeechesResult (line 15699) | type UsageAudioSpeechesResult = { type UsageAudioTranscriptionsResult (line 15730) | type UsageAudioTranscriptionsResult = { type UsageCodeInterpreterSessionsResult (line 15761) | type UsageCodeInterpreterSessionsResult = { type UsageCompletionsResult (line 15776) | type UsageCompletionsResult = { type UsageEmbeddingsResult (line 15827) | type UsageEmbeddingsResult = { type UsageImagesResult (line 15858) | type UsageImagesResult = { type UsageModerationsResult (line 15897) | type UsageModerationsResult = { type UsageResponse (line 15925) | type UsageResponse = { type UsageTimeBucket (line 15932) | type UsageTimeBucket = { type UsageVectorStoresResult (line 15960) | type UsageVectorStoresResult = { type User (line 15975) | type User = { type UserDeleteResponse (line 16002) | type UserDeleteResponse = { type UserListResponse (line 16008) | type UserListResponse = { type UserRoleUpdateRequest (line 16016) | type UserRoleUpdateRequest = { type VadConfig (line 16023) | type VadConfig = { type ValidateGraderRequest (line 16053) | type ValidateGraderRequest = { type ValidateGraderResponse (line 16063) | type ValidateGraderResponse = { type VectorStoreExpirationAfter (line 16075) | type VectorStoreExpirationAfter = { type VectorStoreFileAttributes (line 16094) | type VectorStoreFileAttributes = { type VectorStoreFileBatchObject (line 16103) | type VectorStoreFileBatchObject = { type VectorStoreFileContentResponse (line 16151) | type VectorStoreFileContentResponse = { type VectorStoreFileObject (line 16184) | type VectorStoreFileObject = { type VectorStoreObject (line 16231) | type VectorStoreObject = { type VectorStoreSearchRequest (line 16290) | type VectorStoreSearchRequest = { type VectorStoreSearchResultContentObject (line 16319) | type VectorStoreSearchResultContentObject = { type VectorStoreSearchResultItem (line 16330) | type VectorStoreSearchResultItem = { type VectorStoreSearchResultsPage (line 16350) | type VectorStoreSearchResultsPage = { type Verbosity (line 16388) | type Verbosity = typeof Verbosity[keyof typeof Verbosity]; type VoiceIdsShared (line 16390) | type VoiceIdsShared = string | 'alloy' | 'ash' | 'ballad' | 'coral' | 'e... type Wait (line 16398) | type Wait = { type WebSearchActionFind (line 16413) | type WebSearchActionFind = { type WebSearchActionOpenPage (line 16437) | type WebSearchActionOpenPage = { type WebSearchActionSearch (line 16456) | type WebSearchActionSearch = { type WebSearchContextSize (line 16485) | type WebSearchContextSize = typeof WebSearchContextSize[keyof typeof Web... type WebSearchLocation (line 16492) | type WebSearchLocation = { type WebSearchToolCall (line 16525) | type WebSearchToolCall = { type WebhookBatchCancelled (line 16561) | type WebhookBatchCancelled = { type WebhookBatchCompleted (line 16601) | type WebhookBatchCompleted = { type WebhookBatchExpired (line 16641) | type WebhookBatchExpired = { type WebhookBatchFailed (line 16681) | type WebhookBatchFailed = { type WebhookEvalRunCanceled (line 16721) | type WebhookEvalRunCanceled = { type WebhookEvalRunFailed (line 16761) | type WebhookEvalRunFailed = { type WebhookEvalRunSucceeded (line 16801) | type WebhookEvalRunSucceeded = { type WebhookFineTuningJobCancelled (line 16841) | type WebhookFineTuningJobCancelled = { type WebhookFineTuningJobFailed (line 16881) | type WebhookFineTuningJobFailed = { type WebhookFineTuningJobSucceeded (line 16921) | type WebhookFineTuningJobSucceeded = { type WebhookResponseCancelled (line 16961) | type WebhookResponseCancelled = { type WebhookResponseCompleted (line 17001) | type WebhookResponseCompleted = { type WebhookResponseFailed (line 17041) | type WebhookResponseFailed = { type WebhookResponseIncomplete (line 17081) | type WebhookResponseIncomplete = { type InputTextContent (line 17120) | type InputTextContent = { type InputImageContent (line 17136) | type InputImageContent = { type InputFileContent (line 17154) | type InputFileContent = { type FunctionTool (line 17180) | type FunctionTool = { type RankingOptions (line 17196) | type RankingOptions = { type Filters (line 17207) | type Filters = ComparisonFilter | CompoundFilter; type FileSearchTool (line 17214) | type FileSearchTool = { type ApproximateLocation (line 17234) | type ApproximateLocation = { type WebSearchPreviewTool (line 17250) | type WebSearchPreviewTool = { type ComputerUsePreviewTool (line 17267) | type ComputerUsePreviewTool = { type ImageGenInputUsageDetails (line 17291) | type ImageGenInputUsageDetails = { type ImageGenUsage (line 17307) | type ImageGenUsage = { type FileCitationBody (line 17328) | type FileCitationBody = { type UrlCitationBody (line 17352) | type UrlCitationBody = { type ContainerFileCitationBody (line 17380) | type ContainerFileCitationBody = { type Annotation (line 17407) | type Annotation = ({ type TopLogProb (line 17422) | type TopLogProb = { type LogProb (line 17433) | type LogProb = { type OutputTextContent (line 17445) | type OutputTextContent = { type RefusalContent (line 17466) | type RefusalContent = { type ComputerCallSafetyCheckParam (line 17480) | type ComputerCallSafetyCheckParam = { type ComputerCallOutputItemParam (line 17494) | type ComputerCallOutputItemParam = { type FunctionCallOutputItemParam (line 17514) | type FunctionCallOutputItemParam = { type ItemReferenceParam (line 17536) | type ItemReferenceParam = { type RealtimeConversationItemContent (line 17544) | type RealtimeConversationItemContent = { type RealtimeConnectParams (line 17575) | type RealtimeConnectParams = { type ModerationImageUrlInput (line 17582) | type ModerationImageUrlInput = { type ModerationTextInput (line 17601) | type ModerationTextInput = { type ChunkingStrategyResponse (line 17615) | type ChunkingStrategyResponse = ({ type FilePurpose (line 17638) | type FilePurpose = typeof FilePurpose[keyof typeof FilePurpose]; type BatchError (line 17640) | type BatchError = { type BatchRequestCounts (line 17662) | type BatchRequestCounts = { type AssistantTool (line 17677) | type AssistantTool = ({ type TextAnnotationDelta (line 17685) | type TextAnnotationDelta = ({ type TextAnnotation (line 17691) | type TextAnnotation = ({ type RunStepDetailsToolCall (line 17697) | type RunStepDetailsToolCall = ({ type RunStepDeltaStepDetailsToolCall (line 17705) | type RunStepDeltaStepDetailsToolCall = ({ type MessageContent (line 17713) | type MessageContent = ({ type MessageContentDelta (line 17723) | type MessageContentDelta = ({ type ChatModel (line 17798) | type ChatModel = typeof ChatModel[keyof typeof ChatModel]; type CreateThreadAndRunRequestWithoutStream (line 17800) | type CreateThreadAndRunRequestWithoutStream = { type CreateRunRequestWithoutStream (line 17867) | type CreateRunRequestWithoutStream = { type SubmitToolOutputsRunRequestWithoutStream (line 17922) | type SubmitToolOutputsRunRequestWithoutStream = { type RunStatus (line 17956) | type RunStatus = typeof RunStatus[keyof typeof RunStatus]; type RunStepDeltaObjectDelta (line 17961) | type RunStepDeltaObjectDelta = { type ListAssistantsData (line 17972) | type ListAssistantsData = { type ListAssistantsResponses (line 18000) | type ListAssistantsResponses = { type ListAssistantsResponse2 (line 18007) | type ListAssistantsResponse2 = ListAssistantsResponses[keyof ListAssista... type CreateAssistantData (line 18009) | type CreateAssistantData = { type CreateAssistantResponses (line 18016) | type CreateAssistantResponses = { type CreateAssistantResponse (line 18023) | type CreateAssistantResponse = CreateAssistantResponses[keyof CreateAssi... type DeleteAssistantData (line 18025) | type DeleteAssistantData = { type DeleteAssistantResponses (line 18037) | type DeleteAssistantResponses = { type DeleteAssistantResponse2 (line 18044) | type DeleteAssistantResponse2 = DeleteAssistantResponses[keyof DeleteAss... type GetAssistantData (line 18046) | type GetAssistantData = { type GetAssistantResponses (line 18058) | type GetAssistantResponses = { type GetAssistantResponse (line 18065) | type GetAssistantResponse = GetAssistantResponses[keyof GetAssistantResp... type ModifyAssistantData (line 18067) | type ModifyAssistantData = { type ModifyAssistantResponses (line 18079) | type ModifyAssistantResponses = { type ModifyAssistantResponse (line 18086) | type ModifyAssistantResponse = ModifyAssistantResponses[keyof ModifyAssi... type CreateSpeechData (line 18088) | type CreateSpeechData = { type CreateSpeechResponses (line 18095) | type CreateSpeechResponses = { type CreateSpeechResponse (line 18102) | type CreateSpeechResponse = CreateSpeechResponses[keyof CreateSpeechResp... type CreateTranscriptionData (line 18104) | type CreateTranscriptionData = { type CreateTranscriptionResponses (line 18111) | type CreateTranscriptionResponses = { type CreateTranscriptionResponse (line 18118) | type CreateTranscriptionResponse = CreateTranscriptionResponses[keyof Cr... type CreateTranslationData (line 18120) | type CreateTranslationData = { type CreateTranslationResponses (line 18127) | type CreateTranslationResponses = { type CreateTranslationResponse (line 18134) | type CreateTranslationResponse = CreateTranslationResponses[keyof Create... type ListBatchesData (line 18136) | type ListBatchesData = { type ListBatchesResponses (line 18154) | type ListBatchesResponses = { type ListBatchesResponse2 (line 18161) | type ListBatchesResponse2 = ListBatchesResponses[keyof ListBatchesRespon... type CreateBatchData (line 18163) | type CreateBatchData = { type CreateBatchResponses (line 18190) | type CreateBatchResponses = { type CreateBatchResponse (line 18197) | type CreateBatchResponse = CreateBatchResponses[keyof CreateBatchRespons... type RetrieveBatchData (line 18199) | type RetrieveBatchData = { type RetrieveBatchResponses (line 18211) | type RetrieveBatchResponses = { type RetrieveBatchResponse (line 18218) | type RetrieveBatchResponse = RetrieveBatchResponses[keyof RetrieveBatchR... type CancelBatchData (line 18220) | type CancelBatchData = { type CancelBatchResponses (line 18232) | type CancelBatchResponses = { type CancelBatchResponse (line 18239) | type CancelBatchResponse = CancelBatchResponses[keyof CancelBatchRespons... type ListChatCompletionsData (line 18241) | type ListChatCompletionsData = { type ListChatCompletionsResponses (line 18272) | type ListChatCompletionsResponses = { type ListChatCompletionsResponse (line 18279) | type ListChatCompletionsResponse = ListChatCompletionsResponses[keyof Li... type CreateChatCompletionData (line 18281) | type CreateChatCompletionData = { type CreateChatCompletionResponses (line 18288) | type CreateChatCompletionResponses = { type CreateChatCompletionResponse2 (line 18295) | type CreateChatCompletionResponse2 = CreateChatCompletionResponses[keyof... type DeleteChatCompletionData (line 18297) | type DeleteChatCompletionData = { type DeleteChatCompletionResponses (line 18309) | type DeleteChatCompletionResponses = { type DeleteChatCompletionResponse (line 18316) | type DeleteChatCompletionResponse = DeleteChatCompletionResponses[keyof ... type GetChatCompletionData (line 18318) | type GetChatCompletionData = { type GetChatCompletionResponses (line 18330) | type GetChatCompletionResponses = { type GetChatCompletionResponse (line 18337) | type GetChatCompletionResponse = GetChatCompletionResponses[keyof GetCha... type UpdateChatCompletionData (line 18339) | type UpdateChatCompletionData = { type UpdateChatCompletionResponses (line 18353) | type UpdateChatCompletionResponses = { type UpdateChatCompletionResponse (line 18360) | type UpdateChatCompletionResponse = UpdateChatCompletionResponses[keyof ... type GetChatCompletionMessagesData (line 18362) | type GetChatCompletionMessagesData = { type GetChatCompletionMessagesResponses (line 18387) | type GetChatCompletionMessagesResponses = { type GetChatCompletionMessagesResponse (line 18394) | type GetChatCompletionMessagesResponse = GetChatCompletionMessagesRespon... type CreateCompletionData (line 18396) | type CreateCompletionData = { type CreateCompletionResponses (line 18403) | type CreateCompletionResponses = { type CreateCompletionResponse2 (line 18410) | type CreateCompletionResponse2 = CreateCompletionResponses[keyof CreateC... type ListContainersData (line 18412) | type ListContainersData = { type ListContainersResponses (line 18435) | type ListContainersResponses = { type ListContainersResponse (line 18442) | type ListContainersResponse = ListContainersResponses[keyof ListContaine... type CreateContainerData (line 18444) | type CreateContainerData = { type CreateContainerResponses (line 18451) | type CreateContainerResponses = { type CreateContainerResponse (line 18458) | type CreateContainerResponse = CreateContainerResponses[keyof CreateCont... type DeleteContainerData (line 18460) | type DeleteContainerData = { type DeleteContainerResponses (line 18472) | type DeleteContainerResponses = { type RetrieveContainerData (line 18479) | type RetrieveContainerData = { type RetrieveContainerResponses (line 18488) | type RetrieveContainerResponses = { type RetrieveContainerResponse (line 18495) | type RetrieveContainerResponse = RetrieveContainerResponses[keyof Retrie... type ListContainerFilesData (line 18497) | type ListContainerFilesData = { type ListContainerFilesResponses (line 18522) | type ListContainerFilesResponses = { type ListContainerFilesResponse (line 18529) | type ListContainerFilesResponse = ListContainerFilesResponses[keyof List... type CreateContainerFileData (line 18531) | type CreateContainerFileData = { type CreateContainerFileResponses (line 18540) | type CreateContainerFileResponses = { type CreateContainerFileResponse (line 18547) | type CreateContainerFileResponse = CreateContainerFileResponses[keyof Cr... type DeleteContainerFileData (line 18549) | type DeleteContainerFileData = { type DeleteContainerFileResponses (line 18559) | type DeleteContainerFileResponses = { type RetrieveContainerFileData (line 18566) | type RetrieveContainerFileData = { type RetrieveContainerFileResponses (line 18576) | type RetrieveContainerFileResponses = { type RetrieveContainerFileResponse (line 18583) | type RetrieveContainerFileResponse = RetrieveContainerFileResponses[keyo... type RetrieveContainerFileContentData (line 18585) | type RetrieveContainerFileContentData = { type RetrieveContainerFileContentResponses (line 18595) | type RetrieveContainerFileContentResponses = { type CreateEmbeddingData (line 18602) | type CreateEmbeddingData = { type CreateEmbeddingResponses (line 18609) | type CreateEmbeddingResponses = { type CreateEmbeddingResponse2 (line 18616) | type CreateEmbeddingResponse2 = CreateEmbeddingResponses[keyof CreateEmb... type ListEvalsData (line 18618) | type ListEvalsData = { type ListEvalsResponses (line 18644) | type ListEvalsResponses = { type ListEvalsResponse (line 18651) | type ListEvalsResponse = ListEvalsResponses[keyof ListEvalsResponses]; type CreateEvalData (line 18653) | type CreateEvalData = { type CreateEvalResponses (line 18660) | type CreateEvalResponses = { type CreateEvalResponse (line 18667) | type CreateEvalResponse = CreateEvalResponses[keyof CreateEvalResponses]; type DeleteEvalData (line 18669) | type DeleteEvalData = { type DeleteEvalErrors (line 18681) | type DeleteEvalErrors = { type DeleteEvalError (line 18688) | type DeleteEvalError = DeleteEvalErrors[keyof DeleteEvalErrors]; type DeleteEvalResponses (line 18690) | type DeleteEvalResponses = { type DeleteEvalResponse (line 18701) | type DeleteEvalResponse = DeleteEvalResponses[keyof DeleteEvalResponses]; type GetEvalData (line 18703) | type GetEvalData = { type GetEvalResponses (line 18715) | type GetEvalResponses = { type GetEvalResponse (line 18722) | type GetEvalResponse = GetEvalResponses[keyof GetEvalResponses]; type UpdateEvalData (line 18724) | type UpdateEvalData = { type UpdateEvalResponses (line 18745) | type UpdateEvalResponses = { type UpdateEvalResponse (line 18752) | type UpdateEvalResponse = UpdateEvalResponses[keyof UpdateEvalResponses]; type GetEvalRunsData (line 18754) | type GetEvalRunsData = { type GetEvalRunsResponses (line 18783) | type GetEvalRunsResponses = { type GetEvalRunsResponse (line 18790) | type GetEvalRunsResponse = GetEvalRunsResponses[keyof GetEvalRunsRespons... type CreateEvalRunData (line 18792) | type CreateEvalRunData = { type CreateEvalRunErrors (line 18804) | type CreateEvalRunErrors = { type CreateEvalRunError (line 18811) | type CreateEvalRunError = CreateEvalRunErrors[keyof CreateEvalRunErrors]; type CreateEvalRunResponses (line 18813) | type CreateEvalRunResponses = { type CreateEvalRunResponse (line 18820) | type CreateEvalRunResponse = CreateEvalRunResponses[keyof CreateEvalRunR... type DeleteEvalRunData (line 18822) | type DeleteEvalRunData = { type DeleteEvalRunErrors (line 18838) | type DeleteEvalRunErrors = { type DeleteEvalRunError (line 18845) | type DeleteEvalRunError = DeleteEvalRunErrors[keyof DeleteEvalRunErrors]; type DeleteEvalRunResponses (line 18847) | type DeleteEvalRunResponses = { type DeleteEvalRunResponse (line 18858) | type DeleteEvalRunResponse = DeleteEvalRunResponses[keyof DeleteEvalRunR... type GetEvalRunData (line 18860) | type GetEvalRunData = { type GetEvalRunResponses (line 18876) | type GetEvalRunResponses = { type GetEvalRunResponse (line 18883) | type GetEvalRunResponse = GetEvalRunResponses[keyof GetEvalRunResponses]; type CancelEvalRunData (line 18885) | type CancelEvalRunData = { type CancelEvalRunResponses (line 18901) | type CancelEvalRunResponses = { type CancelEvalRunResponse (line 18908) | type CancelEvalRunResponse = CancelEvalRunResponses[keyof CancelEvalRunR... type GetEvalRunOutputItemsData (line 18910) | type GetEvalRunOutputItemsData = { type GetEvalRunOutputItemsResponses (line 18945) | type GetEvalRunOutputItemsResponses = { type GetEvalRunOutputItemsResponse (line 18952) | type GetEvalRunOutputItemsResponse = GetEvalRunOutputItemsResponses[keyo... type GetEvalRunOutputItemData (line 18954) | type GetEvalRunOutputItemData = { type GetEvalRunOutputItemResponses (line 18974) | type GetEvalRunOutputItemResponses = { type GetEvalRunOutputItemResponse (line 18981) | type GetEvalRunOutputItemResponse = GetEvalRunOutputItemResponses[keyof ... type ListFilesData (line 18983) | type ListFilesData = { type ListFilesResponses (line 19010) | type ListFilesResponses = { type ListFilesResponse2 (line 19017) | type ListFilesResponse2 = ListFilesResponses[keyof ListFilesResponses]; type CreateFileData (line 19019) | type CreateFileData = { type CreateFileResponses (line 19026) | type CreateFileResponses = { type CreateFileResponse (line 19033) | type CreateFileResponse = CreateFileResponses[keyof CreateFileResponses]; type DeleteFileData (line 19035) | type DeleteFileData = { type DeleteFileResponses (line 19047) | type DeleteFileResponses = { type DeleteFileResponse2 (line 19054) | type DeleteFileResponse2 = DeleteFileResponses[keyof DeleteFileResponses]; type RetrieveFileData (line 19056) | type RetrieveFileData = { type RetrieveFileResponses (line 19068) | type RetrieveFileResponses = { type RetrieveFileResponse (line 19075) | type RetrieveFileResponse = RetrieveFileResponses[keyof RetrieveFileResp... type DownloadFileData (line 19077) | type DownloadFileData = { type DownloadFileResponses (line 19089) | type DownloadFileResponses = { type DownloadFileResponse (line 19096) | type DownloadFileResponse = DownloadFileResponses[keyof DownloadFileResp... type RunGraderData (line 19098) | type RunGraderData = { type RunGraderResponses (line 19105) | type RunGraderResponses = { type RunGraderResponse2 (line 19112) | type RunGraderResponse2 = RunGraderResponses[keyof RunGraderResponses]; type ValidateGraderData (line 19114) | type ValidateGraderData = { type ValidateGraderResponses (line 19121) | type ValidateGraderResponses = { type ValidateGraderResponse2 (line 19128) | type ValidateGraderResponse2 = ValidateGraderResponses[keyof ValidateGra... type ListFineTuningCheckpointPermissionsData (line 19130) | type ListFineTuningCheckpointPermissionsData = { type ListFineTuningCheckpointPermissionsResponses (line 19160) | type ListFineTuningCheckpointPermissionsResponses = { type ListFineTuningCheckpointPermissionsResponse (line 19167) | type ListFineTuningCheckpointPermissionsResponse = ListFineTuningCheckpo... type CreateFineTuningCheckpointPermissionData (line 19169) | type CreateFineTuningCheckpointPermissionData = { type CreateFineTuningCheckpointPermissionResponses (line 19182) | type CreateFineTuningCheckpointPermissionResponses = { type CreateFineTuningCheckpointPermissionResponse (line 19189) | type CreateFineTuningCheckpointPermissionResponse = CreateFineTuningChec... type DeleteFineTuningCheckpointPermissionData (line 19191) | type DeleteFineTuningCheckpointPermissionData = { type DeleteFineTuningCheckpointPermissionResponses (line 19209) | type DeleteFineTuningCheckpointPermissionResponses = { type DeleteFineTuningCheckpointPermissionResponse2 (line 19216) | type DeleteFineTuningCheckpointPermissionResponse2 = DeleteFineTuningChe... type ListPaginatedFineTuningJobsData (line 19218) | type ListPaginatedFineTuningJobsData = { type ListPaginatedFineTuningJobsResponses (line 19241) | type ListPaginatedFineTuningJobsResponses = { type ListPaginatedFineTuningJobsResponse2 (line 19248) | type ListPaginatedFineTuningJobsResponse2 = ListPaginatedFineTuningJobsR... type CreateFineTuningJobData (line 19250) | type CreateFineTuningJobData = { type CreateFineTuningJobResponses (line 19257) | type CreateFineTuningJobResponses = { type CreateFineTuningJobResponse (line 19264) | type CreateFineTuningJobResponse = CreateFineTuningJobResponses[keyof Cr... type RetrieveFineTuningJobData (line 19266) | type RetrieveFineTuningJobData = { type RetrieveFineTuningJobResponses (line 19279) | type RetrieveFineTuningJobResponses = { type RetrieveFineTuningJobResponse (line 19286) | type RetrieveFineTuningJobResponse = RetrieveFineTuningJobResponses[keyo... type CancelFineTuningJobData (line 19288) | type CancelFineTuningJobData = { type CancelFineTuningJobResponses (line 19301) | type CancelFineTuningJobResponses = { type CancelFineTuningJobResponse (line 19308) | type CancelFineTuningJobResponse = CancelFineTuningJobResponses[keyof Ca... type ListFineTuningJobCheckpointsData (line 19310) | type ListFineTuningJobCheckpointsData = { type ListFineTuningJobCheckpointsResponses (line 19332) | type ListFineTuningJobCheckpointsResponses = { type ListFineTuningJobCheckpointsResponse2 (line 19339) | type ListFineTuningJobCheckpointsResponse2 = ListFineTuningJobCheckpoint... type ListFineTuningEventsData (line 19341) | type ListFineTuningEventsData = { type ListFineTuningEventsResponses (line 19363) | type ListFineTuningEventsResponses = { type ListFineTuningEventsResponse (line 19370) | type ListFineTuningEventsResponse = ListFineTuningEventsResponses[keyof ... type PauseFineTuningJobData (line 19372) | type PauseFineTuningJobData = { type PauseFineTuningJobResponses (line 19385) | type PauseFineTuningJobResponses = { type PauseFineTuningJobResponse (line 19392) | type PauseFineTuningJobResponse = PauseFineTuningJobResponses[keyof Paus... type ResumeFineTuningJobData (line 19394) | type ResumeFineTuningJobData = { type ResumeFineTuningJobResponses (line 19407) | type ResumeFineTuningJobResponses = { type ResumeFineTuningJobResponse (line 19414) | type ResumeFineTuningJobResponse = ResumeFineTuningJobResponses[keyof Re... type CreateImageEditData (line 19416) | type CreateImageEditData = { type CreateImageEditResponses (line 19423) | type CreateImageEditResponses = { type CreateImageEditResponse (line 19430) | type CreateImageEditResponse = CreateImageEditResponses[keyof CreateImag... type CreateImageData (line 19432) | type CreateImageData = { type CreateImageResponses (line 19439) | type CreateImageResponses = { type CreateImageResponse (line 19446) | type CreateImageResponse = CreateImageResponses[keyof CreateImageRespons... type CreateImageVariationData (line 19448) | type CreateImageVariationData = { type CreateImageVariationResponses (line 19455) | type CreateImageVariationResponses = { type CreateImageVariationResponse (line 19462) | type CreateImageVariationResponse = CreateImageVariationResponses[keyof ... type ListModelsData (line 19464) | type ListModelsData = { type ListModelsResponses (line 19471) | type ListModelsResponses = { type ListModelsResponse2 (line 19478) | type ListModelsResponse2 = ListModelsResponses[keyof ListModelsResponses]; type DeleteModelData (line 19480) | type DeleteModelData = { type DeleteModelResponses (line 19492) | type DeleteModelResponses = { type DeleteModelResponse2 (line 19499) | type DeleteModelResponse2 = DeleteModelResponses[keyof DeleteModelRespon... type RetrieveModelData (line 19501) | type RetrieveModelData = { type RetrieveModelResponses (line 19513) | type RetrieveModelResponses = { type RetrieveModelResponse (line 19520) | type RetrieveModelResponse = RetrieveModelResponses[keyof RetrieveModelR... type CreateModerationData (line 19522) | type CreateModerationData = { type CreateModerationResponses (line 19529) | type CreateModerationResponses = { type CreateModerationResponse2 (line 19536) | type CreateModerationResponse2 = CreateModerationResponses[keyof CreateM... type AdminApiKeysListData (line 19538) | type AdminApiKeysListData = { type AdminApiKeysListResponses (line 19558) | type AdminApiKeysListResponses = { type AdminApiKeysListResponse (line 19565) | type AdminApiKeysListResponse = AdminApiKeysListResponses[keyof AdminApi... type AdminApiKeysCreateData (line 19567) | type AdminApiKeysCreateData = { type AdminApiKeysCreateResponses (line 19576) | type AdminApiKeysCreateResponses = { type AdminApiKeysCreateResponse (line 19583) | type AdminApiKeysCreateResponse = AdminApiKeysCreateResponses[keyof Admi... type AdminApiKeysDeleteData (line 19585) | type AdminApiKeysDeleteData = { type AdminApiKeysDeleteResponses (line 19597) | type AdminApiKeysDeleteResponses = { type AdminApiKeysDeleteResponse (line 19608) | type AdminApiKeysDeleteResponse = AdminApiKeysDeleteResponses[keyof Admi... type AdminApiKeysGetData (line 19610) | type AdminApiKeysGetData = { type AdminApiKeysGetResponses (line 19622) | type AdminApiKeysGetResponses = { type AdminApiKeysGetResponse (line 19629) | type AdminApiKeysGetResponse = AdminApiKeysGetResponses[keyof AdminApiKe... type ListAuditLogsData (line 19631) | type ListAuditLogsData = { type ListAuditLogsResponses (line 19695) | type ListAuditLogsResponses = { type ListAuditLogsResponse2 (line 19702) | type ListAuditLogsResponse2 = ListAuditLogsResponses[keyof ListAuditLogs... type ListOrganizationCertificatesData (line 19704) | type ListOrganizationCertificatesData = { type ListOrganizationCertificatesResponses (line 19727) | type ListOrganizationCertificatesResponses = { type ListOrganizationCertificatesResponse (line 19734) | type ListOrganizationCertificatesResponse = ListOrganizationCertificates... type UploadCertificateData (line 19736) | type UploadCertificateData = { type UploadCertificateResponses (line 19746) | type UploadCertificateResponses = { type UploadCertificateResponse (line 19753) | type UploadCertificateResponse = UploadCertificateResponses[keyof Upload... type ActivateOrganizationCertificatesData (line 19755) | type ActivateOrganizationCertificatesData = { type ActivateOrganizationCertificatesResponses (line 19765) | type ActivateOrganizationCertificatesResponses = { type ActivateOrganizationCertificatesResponse (line 19772) | type ActivateOrganizationCertificatesResponse = ActivateOrganizationCert... type DeactivateOrganizationCertificatesData (line 19774) | type DeactivateOrganizationCertificatesData = { type DeactivateOrganizationCertificatesResponses (line 19784) | type DeactivateOrganizationCertificatesResponses = { type DeactivateOrganizationCertificatesResponse (line 19791) | type DeactivateOrganizationCertificatesResponse = DeactivateOrganization... type DeleteCertificateData (line 19793) | type DeleteCertificateData = { type DeleteCertificateResponses (line 19800) | type DeleteCertificateResponses = { type DeleteCertificateResponse2 (line 19807) | type DeleteCertificateResponse2 = DeleteCertificateResponses[keyof Delet... type GetCertificateData (line 19809) | type GetCertificateData = { type GetCertificateResponses (line 19826) | type GetCertificateResponses = { type GetCertificateResponse (line 19833) | type GetCertificateResponse = GetCertificateResponses[keyof GetCertifica... type ModifyCertificateData (line 19835) | type ModifyCertificateData = { type ModifyCertificateResponses (line 19845) | type ModifyCertificateResponses = { type ModifyCertificateResponse (line 19852) | type ModifyCertificateResponse = ModifyCertificateResponses[keyof Modify... type UsageCostsData (line 19854) | type UsageCostsData = { type UsageCostsResponses (line 19891) | type UsageCostsResponses = { type UsageCostsResponse (line 19898) | type UsageCostsResponse = UsageCostsResponses[keyof UsageCostsResponses]; type ListInvitesData (line 19900) | type ListInvitesData = { type ListInvitesResponses (line 19918) | type ListInvitesResponses = { type ListInvitesResponse (line 19925) | type ListInvitesResponse = ListInvitesResponses[keyof ListInvitesRespons... type InviteUserData (line 19927) | type InviteUserData = { type InviteUserResponses (line 19937) | type InviteUserResponses = { type InviteUserResponse (line 19944) | type InviteUserResponse = InviteUserResponses[keyof InviteUserResponses]; type DeleteInviteData (line 19946) | type DeleteInviteData = { type DeleteInviteResponses (line 19958) | type DeleteInviteResponses = { type DeleteInviteResponse (line 19965) | type DeleteInviteResponse = DeleteInviteResponses[keyof DeleteInviteResp... type RetrieveInviteData (line 19967) | type RetrieveInviteData = { type RetrieveInviteResponses (line 19979) | type RetrieveInviteResponses = { type RetrieveInviteResponse (line 19986) | type RetrieveInviteResponse = RetrieveInviteResponses[keyof RetrieveInvi... type ListProjectsData (line 19988) | type ListProjectsData = { type ListProjectsResponses (line 20010) | type ListProjectsResponses = { type ListProjectsResponse (line 20017) | type ListProjectsResponse = ListProjectsResponses[keyof ListProjectsResp... type CreateProjectData (line 20019) | type CreateProjectData = { type CreateProjectResponses (line 20029) | type CreateProjectResponses = { type CreateProjectResponse (line 20036) | type CreateProjectResponse = CreateProjectResponses[keyof CreateProjectR... type RetrieveProjectData (line 20038) | type RetrieveProjectData = { type RetrieveProjectResponses (line 20050) | type RetrieveProjectResponses = { type RetrieveProjectResponse (line 20057) | type RetrieveProjectResponse = RetrieveProjectResponses[keyof RetrievePr... type ModifyProjectData (line 20059) | type ModifyProjectData = { type ModifyProjectErrors (line 20074) | type ModifyProjectErrors = { type ModifyProjectError (line 20081) | type ModifyProjectError = ModifyProjectErrors[keyof ModifyProjectErrors]; type ModifyProjectResponses (line 20083) | type ModifyProjectResponses = { type ModifyProjectResponse (line 20090) | type ModifyProjectResponse = ModifyProjectResponses[keyof ModifyProjectR... type ListProjectApiKeysData (line 20092) | type ListProjectApiKeysData = { type ListProjectApiKeysResponses (line 20115) | type ListProjectApiKeysResponses = { type ListProjectApiKeysResponse (line 20122) | type ListProjectApiKeysResponse = ListProjectApiKeysResponses[keyof List... type DeleteProjectApiKeyData (line 20124) | type DeleteProjectApiKeyData = { type DeleteProjectApiKeyErrors (line 20140) | type DeleteProjectApiKeyErrors = { type DeleteProjectApiKeyError (line 20147) | type DeleteProjectApiKeyError = DeleteProjectApiKeyErrors[keyof DeletePr... type DeleteProjectApiKeyResponses (line 20149) | type DeleteProjectApiKeyResponses = { type DeleteProjectApiKeyResponse (line 20156) | type DeleteProjectApiKeyResponse = DeleteProjectApiKeyResponses[keyof De... type RetrieveProjectApiKeyData (line 20158) | type RetrieveProjectApiKeyData = { type RetrieveProjectApiKeyResponses (line 20174) | type RetrieveProjectApiKeyResponses = { type RetrieveProjectApiKeyResponse (line 20181) | type RetrieveProjectApiKeyResponse = RetrieveProjectApiKeyResponses[keyo... type ArchiveProjectData (line 20183) | type ArchiveProjectData = { type ArchiveProjectResponses (line 20195) | type ArchiveProjectResponses = { type ArchiveProjectResponse (line 20202) | type ArchiveProjectResponse = ArchiveProjectResponses[keyof ArchiveProje... type ListProjectCertificatesData (line 20204) | type ListProjectCertificatesData = { type ListProjectCertificatesResponses (line 20232) | type ListProjectCertificatesResponses = { type ListProjectCertificatesResponse (line 20239) | type ListProjectCertificatesResponse = ListProjectCertificatesResponses[... type ActivateProjectCertificatesData (line 20241) | type ActivateProjectCertificatesData = { type ActivateProjectCertificatesResponses (line 20256) | type ActivateProjectCertificatesResponses = { type ActivateProjectCertificatesResponse (line 20263) | type ActivateProjectCertificatesResponse = ActivateProjectCertificatesRe... type DeactivateProjectCertificatesData (line 20265) | type DeactivateProjectCertificatesData = { type DeactivateProjectCertificatesResponses (line 20280) | type DeactivateProjectCertificatesResponses = { type DeactivateProjectCertificatesResponse (line 20287) | type DeactivateProjectCertificatesResponse = DeactivateProjectCertificat... type ListProjectRateLimitsData (line 20289) | type ListProjectRateLimitsData = { type ListProjectRateLimitsResponses (line 20317) | type ListProjectRateLimitsResponses = { type ListProjectRateLimitsResponse (line 20324) | type ListProjectRateLimitsResponse = ListProjectRateLimitsResponses[keyo... type UpdateProjectRateLimitsData (line 20326) | type UpdateProjectRateLimitsData = { type UpdateProjectRateLimitsErrors (line 20345) | type UpdateProjectRateLimitsErrors = { type UpdateProjectRateLimitsError (line 20352) | type UpdateProjectRateLimitsError = UpdateProjectRateLimitsErrors[keyof ... type UpdateProjectRateLimitsResponses (line 20354) | type UpdateProjectRateLimitsResponses = { type UpdateProjectRateLimitsResponse (line 20361) | type UpdateProjectRateLimitsResponse = UpdateProjectRateLimitsResponses[... type ListProjectServiceAccountsData (line 20363) | type ListProjectServiceAccountsData = { type ListProjectServiceAccountsErrors (line 20386) | type ListProjectServiceAccountsErrors = { type ListProjectServiceAccountsError (line 20393) | type ListProjectServiceAccountsError = ListProjectServiceAccountsErrors[... type ListProjectServiceAccountsResponses (line 20395) | type ListProjectServiceAccountsResponses = { type ListProjectServiceAccountsResponse (line 20402) | type ListProjectServiceAccountsResponse = ListProjectServiceAccountsResp... type CreateProjectServiceAccountData (line 20404) | type CreateProjectServiceAccountData = { type CreateProjectServiceAccountErrors (line 20419) | type CreateProjectServiceAccountErrors = { type CreateProjectServiceAccountError (line 20426) | type CreateProjectServiceAccountError = CreateProjectServiceAccountError... type CreateProjectServiceAccountResponses (line 20428) | type CreateProjectServiceAccountResponses = { type CreateProjectServiceAccountResponse (line 20435) | type CreateProjectServiceAccountResponse = CreateProjectServiceAccountRe... type DeleteProjectServiceAccountData (line 20437) | type DeleteProjectServiceAccountData = { type DeleteProjectServiceAccountResponses (line 20453) | type DeleteProjectServiceAccountResponses = { type DeleteProjectServiceAccountResponse (line 20460) | type DeleteProjectServiceAccountResponse = DeleteProjectServiceAccountRe... type RetrieveProjectServiceAccountData (line 20462) | type RetrieveProjectServiceAccountData = { type RetrieveProjectServiceAccountResponses (line 20478) | type RetrieveProjectServiceAccountResponses = { type RetrieveProjectServiceAccountResponse (line 20485) | type RetrieveProjectServiceAccountResponse = RetrieveProjectServiceAccou... type ListProjectUsersData (line 20487) | type ListProjectUsersData = { type ListProjectUsersErrors (line 20510) | type ListProjectUsersErrors = { type ListProjectUsersError (line 20517) | type ListProjectUsersError = ListProjectUsersErrors[keyof ListProjectUse... type ListProjectUsersResponses (line 20519) | type ListProjectUsersResponses = { type ListProjectUsersResponse (line 20526) | type ListProjectUsersResponse = ListProjectUsersResponses[keyof ListProj... type CreateProjectUserData (line 20528) | type CreateProjectUserData = { type CreateProjectUserErrors (line 20543) | type CreateProjectUserErrors = { type CreateProjectUserError (line 20550) | type CreateProjectUserError = CreateProjectUserErrors[keyof CreateProjec... type CreateProjectUserResponses (line 20552) | type CreateProjectUserResponses = { type CreateProjectUserResponse (line 20559) | type CreateProjectUserResponse = CreateProjectUserResponses[keyof Create... type DeleteProjectUserData (line 20561) | type DeleteProjectUserData = { type DeleteProjectUserErrors (line 20577) | type DeleteProjectUserErrors = { type DeleteProjectUserError (line 20584) | type DeleteProjectUserError = DeleteProjectUserErrors[keyof DeleteProjec... type DeleteProjectUserResponses (line 20586) | type DeleteProjectUserResponses = { type DeleteProjectUserResponse (line 20593) | type DeleteProjectUserResponse = DeleteProjectUserResponses[keyof Delete... type RetrieveProjectUserData (line 20595) | type RetrieveProjectUserData = { type RetrieveProjectUserResponses (line 20611) | type RetrieveProjectUserResponses = { type RetrieveProjectUserResponse (line 20618) | type RetrieveProjectUserResponse = RetrieveProjectUserResponses[keyof Re... type ModifyProjectUserData (line 20620) | type ModifyProjectUserData = { type ModifyProjectUserErrors (line 20639) | type ModifyProjectUserErrors = { type ModifyProjectUserError (line 20646) | type ModifyProjectUserError = ModifyProjectUserErrors[keyof ModifyProjec... type ModifyProjectUserResponses (line 20648) | type ModifyProjectUserResponses = { type ModifyProjectUserResponse (line 20655) | type ModifyProjectUserResponse = ModifyProjectUserResponses[keyof Modify... type UsageAudioSpeechesData (line 20657) | type UsageAudioSpeechesData = { type UsageAudioSpeechesResponses (line 20709) | type UsageAudioSpeechesResponses = { type UsageAudioSpeechesResponse (line 20716) | type UsageAudioSpeechesResponse = UsageAudioSpeechesResponses[keyof Usag... type UsageAudioTranscriptionsData (line 20718) | type UsageAudioTranscriptionsData = { type UsageAudioTranscriptionsResponses (line 20770) | type UsageAudioTranscriptionsResponses = { type UsageAudioTranscriptionsResponse (line 20777) | type UsageAudioTranscriptionsResponse = UsageAudioTranscriptionsResponse... type UsageCodeInterpreterSessionsData (line 20779) | type UsageCodeInterpreterSessionsData = { type UsageCodeInterpreterSessionsResponses (line 20819) | type UsageCodeInterpreterSessionsResponses = { type UsageCodeInterpreterSessionsResponse (line 20826) | type UsageCodeInterpreterSessionsResponse = UsageCodeInterpreterSessions... type UsageCompletionsData (line 20828) | type UsageCompletionsData = { type UsageCompletionsResponses (line 20885) | type UsageCompletionsResponses = { type UsageCompletionsResponse (line 20892) | type UsageCompletionsResponse = UsageCompletionsResponses[keyof UsageCom... type UsageEmbeddingsData (line 20894) | type UsageEmbeddingsData = { type UsageEmbeddingsResponses (line 20946) | type UsageEmbeddingsResponses = { type UsageEmbeddingsResponse (line 20953) | type UsageEmbeddingsResponse = UsageEmbeddingsResponses[keyof UsageEmbed... type UsageImagesData (line 20955) | type UsageImagesData = { type UsageImagesResponses (line 21015) | type UsageImagesResponses = { type UsageImagesResponse (line 21022) | type UsageImagesResponse = UsageImagesResponses[keyof UsageImagesRespons... type UsageModerationsData (line 21024) | type UsageModerationsData = { type UsageModerationsResponses (line 21076) | type UsageModerationsResponses = { type UsageModerationsResponse (line 21083) | type UsageModerationsResponse = UsageModerationsResponses[keyof UsageMod... type UsageVectorStoresData (line 21085) | type UsageVectorStoresData = { type UsageVectorStoresResponses (line 21125) | type UsageVectorStoresResponses = { type UsageVectorStoresResponse (line 21132) | type UsageVectorStoresResponse = UsageVectorStoresResponses[keyof UsageV... type ListUsersData (line 21134) | type ListUsersData = { type ListUsersResponses (line 21156) | type ListUsersResponses = { type ListUsersResponse (line 21163) | type ListUsersResponse = ListUsersResponses[keyof ListUsersResponses]; type DeleteUserData (line 21165) | type DeleteUserData = { type DeleteUserResponses (line 21177) | type DeleteUserResponses = { type DeleteUserResponse (line 21184) | type DeleteUserResponse = DeleteUserResponses[keyof DeleteUserResponses]; type RetrieveUserData (line 21186) | type RetrieveUserData = { type RetrieveUserResponses (line 21198) | type RetrieveUserResponses = { type RetrieveUserResponse (line 21205) | type RetrieveUserResponse = RetrieveUserResponses[keyof RetrieveUserResp... type ModifyUserData (line 21207) | type ModifyUserData = { type ModifyUserResponses (line 21222) | type ModifyUserResponses = { type ModifyUserResponse (line 21229) | type ModifyUserResponse = ModifyUserResponses[keyof ModifyUserResponses]; type CreateRealtimeSessionData (line 21231) | type CreateRealtimeSessionData = { type CreateRealtimeSessionResponses (line 21241) | type CreateRealtimeSessionResponses = { type CreateRealtimeSessionResponse (line 21248) | type CreateRealtimeSessionResponse = CreateRealtimeSessionResponses[keyo... type CreateRealtimeTranscriptionSessionData (line 21250) | type CreateRealtimeTranscriptionSessionData = { type CreateRealtimeTranscriptionSessionResponses (line 21260) | type CreateRealtimeTranscriptionSessionResponses = { type CreateRealtimeTranscriptionSessionResponse (line 21267) | type CreateRealtimeTranscriptionSessionResponse = CreateRealtimeTranscri... type CreateResponseData (line 21269) | type CreateResponseData = { type CreateResponseResponses (line 21276) | type CreateResponseResponses = { type CreateResponseResponse (line 21283) | type CreateResponseResponse = CreateResponseResponses[keyof CreateRespon... type DeleteResponseData (line 21285) | type DeleteResponseData = { type DeleteResponseErrors (line 21297) | type DeleteResponseErrors = { type DeleteResponseError (line 21304) | type DeleteResponseError = DeleteResponseErrors[keyof DeleteResponseErro... type DeleteResponseResponses (line 21306) | type DeleteResponseResponses = { type GetResponseData (line 21313) | type GetResponseData = { type GetResponseResponses (line 21356) | type GetResponseResponses = { type GetResponseResponse (line 21363) | type GetResponseResponse = GetResponseResponses[keyof GetResponseRespons... type CancelResponseData (line 21365) | type CancelResponseData = { type CancelResponseErrors (line 21377) | type CancelResponseErrors = { type CancelResponseError (line 21384) | type CancelResponseError = CancelResponseErrors[keyof CancelResponseErro... type CancelResponseResponses (line 21386) | type CancelResponseResponses = { type CancelResponseResponse (line 21393) | type CancelResponseResponse = CancelResponseResponses[keyof CancelRespon... type ListInputItemsData (line 21395) | type ListInputItemsData = { type ListInputItemsResponses (line 21437) | type ListInputItemsResponses = { type ListInputItemsResponse (line 21444) | type ListInputItemsResponse = ListInputItemsResponses[keyof ListInputIte... type CreateThreadData (line 21446) | type CreateThreadData = { type CreateThreadResponses (line 21453) | type CreateThreadResponses = { type CreateThreadResponse (line 21460) | type CreateThreadResponse = CreateThreadResponses[keyof CreateThreadResp... type CreateThreadAndRunData (line 21462) | type CreateThreadAndRunData = { type CreateThreadAndRunResponses (line 21469) | type CreateThreadAndRunResponses = { type CreateThreadAndRunResponse (line 21476) | type CreateThreadAndRunResponse = CreateThreadAndRunResponses[keyof Crea... type DeleteThreadData (line 21478) | type DeleteThreadData = { type DeleteThreadResponses (line 21490) | type DeleteThreadResponses = { type DeleteThreadResponse2 (line 21497) | type DeleteThreadResponse2 = DeleteThreadResponses[keyof DeleteThreadRes... type GetThreadData (line 21499) | type GetThreadData = { type GetThreadResponses (line 21511) | type GetThreadResponses = { type GetThreadResponse (line 21518) | type GetThreadResponse = GetThreadResponses[keyof GetThreadResponses]; type ModifyThreadData (line 21520) | type ModifyThreadData = { type ModifyThreadResponses (line 21532) | type ModifyThreadResponses = { type ModifyThreadResponse (line 21539) | type ModifyThreadResponse = ModifyThreadResponses[keyof ModifyThreadResp... type ListMessagesData (line 21541) | type ListMessagesData = { type ListMessagesResponses (line 21579) | type ListMessagesResponses = { type ListMessagesResponse2 (line 21586) | type ListMessagesResponse2 = ListMessagesResponses[keyof ListMessagesRes... type CreateMessageData (line 21588) | type CreateMessageData = { type CreateMessageResponses (line 21600) | type CreateMessageResponses = { type CreateMessageResponse (line 21607) | type CreateMessageResponse = CreateMessageResponses[keyof CreateMessageR... type DeleteMessageData (line 21609) | type DeleteMessageData = { type DeleteMessageResponses (line 21625) | type DeleteMessageResponses = { type DeleteMessageResponse2 (line 21632) | type DeleteMessageResponse2 = DeleteMessageResponses[keyof DeleteMessage... type GetMessageData (line 21634) | type GetMessageData = { type GetMessageResponses (line 21650) | type GetMessageResponses = { type GetMessageResponse (line 21657) | type GetMessageResponse = GetMessageResponses[keyof GetMessageResponses]; type ModifyMessageData (line 21659) | type ModifyMessageData = { type ModifyMessageResponses (line 21675) | type ModifyMessageResponses = { type ModifyMessageResponse (line 21682) | type ModifyMessageResponse = ModifyMessageResponses[keyof ModifyMessageR... type ListRunsData (line 21684) | type ListRunsData = { type ListRunsResponses (line 21717) | type ListRunsResponses = { type ListRunsResponse2 (line 21724) | type ListRunsResponse2 = ListRunsResponses[keyof ListRunsResponses]; type CreateRunData (line 21726) | type CreateRunData = { type CreateRunResponses (line 21746) | type CreateRunResponses = { type CreateRunResponse (line 21753) | type CreateRunResponse = CreateRunResponses[keyof CreateRunResponses]; type GetRunData (line 21755) | type GetRunData = { type GetRunResponses (line 21771) | type GetRunResponses = { type GetRunResponse (line 21778) | type GetRunResponse = GetRunResponses[keyof GetRunResponses]; type ModifyRunData (line 21780) | type ModifyRunData = { type ModifyRunResponses (line 21796) | type ModifyRunResponses = { type ModifyRunResponse (line 21803) | type ModifyRunResponse = ModifyRunResponses[keyof ModifyRunResponses]; type CancelRunData (line 21805) | type CancelRunData = { type CancelRunResponses (line 21821) | type CancelRunResponses = { type CancelRunResponse (line 21828) | type CancelRunResponse = CancelRunResponses[keyof CancelRunResponses]; type ListRunStepsData (line 21830) | type ListRunStepsData = { type ListRunStepsResponses (line 21874) | type ListRunStepsResponses = { type ListRunStepsResponse2 (line 21881) | type ListRunStepsResponse2 = ListRunStepsResponses[keyof ListRunStepsRes... type GetRunStepData (line 21883) | type GetRunStepData = { type GetRunStepResponses (line 21911) | type GetRunStepResponses = { type GetRunStepResponse (line 21918) | type GetRunStepResponse = GetRunStepResponses[keyof GetRunStepResponses]; type SubmitToolOuputsToRunData (line 21920) | type SubmitToolOuputsToRunData = { type SubmitToolOuputsToRunResponses (line 21936) | type SubmitToolOuputsToRunResponses = { type SubmitToolOuputsToRunResponse (line 21943) | type SubmitToolOuputsToRunResponse = SubmitToolOuputsToRunResponses[keyo... type CreateUploadData (line 21945) | type CreateUploadData = { type CreateUploadResponses (line 21952) | type CreateUploadResponses = { type CreateUploadResponse (line 21959) | type CreateUploadResponse = CreateUploadResponses[keyof CreateUploadResp... type CancelUploadData (line 21961) | type CancelUploadData = { type CancelUploadResponses (line 21974) | type CancelUploadResponses = { type CancelUploadResponse (line 21981) | type CancelUploadResponse = CancelUploadResponses[keyof CancelUploadResp... type CompleteUploadData (line 21983) | type CompleteUploadData = { type CompleteUploadResponses (line 21996) | type CompleteUploadResponses = { type CompleteUploadResponse (line 22003) | type CompleteUploadResponse = CompleteUploadResponses[keyof CompleteUplo... type AddUploadPartData (line 22005) | type AddUploadPartData = { type AddUploadPartResponses (line 22018) | type AddUploadPartResponses = { type AddUploadPartResponse (line 22025) | type AddUploadPartResponse = AddUploadPartResponses[keyof AddUploadPartR... type ListVectorStoresData (line 22027) | type ListVectorStoresData = { type ListVectorStoresResponses (line 22055) | type ListVectorStoresResponses = { type ListVectorStoresResponse2 (line 22062) | type ListVectorStoresResponse2 = ListVectorStoresResponses[keyof ListVec... type CreateVectorStoreData (line 22064) | type CreateVectorStoreData = { type CreateVectorStoreResponses (line 22071) | type CreateVectorStoreResponses = { type CreateVectorStoreResponse (line 22078) | type CreateVectorStoreResponse = CreateVectorStoreResponses[keyof Create... type DeleteVectorStoreData (line 22080) | type DeleteVectorStoreData = { type DeleteVectorStoreResponses (line 22092) | type DeleteVectorStoreResponses = { type DeleteVectorStoreResponse2 (line 22099) | type DeleteVectorStoreResponse2 = DeleteVectorStoreResponses[keyof Delet... type GetVectorStoreData (line 22101) | type GetVectorStoreData = { type GetVectorStoreResponses (line 22113) | type GetVectorStoreResponses = { type GetVectorStoreResponse (line 22120) | type GetVectorStoreResponse = GetVectorStoreResponses[keyof GetVectorSto... type ModifyVectorStoreData (line 22122) | type ModifyVectorStoreData = { type ModifyVectorStoreResponses (line 22134) | type ModifyVectorStoreResponses = { type ModifyVectorStoreResponse (line 22141) | type ModifyVectorStoreResponse = ModifyVectorStoreResponses[keyof Modify... type CreateVectorStoreFileBatchData (line 22143) | type CreateVectorStoreFileBatchData = { type CreateVectorStoreFileBatchResponses (line 22156) | type CreateVectorStoreFileBatchResponses = { type CreateVectorStoreFileBatchResponse (line 22163) | type CreateVectorStoreFileBatchResponse = CreateVectorStoreFileBatchResp... type GetVectorStoreFileBatchData (line 22165) | type GetVectorStoreFileBatchData = { type GetVectorStoreFileBatchResponses (line 22181) | type GetVectorStoreFileBatchResponses = { type GetVectorStoreFileBatchResponse (line 22188) | type GetVectorStoreFileBatchResponse = GetVectorStoreFileBatchResponses[... type CancelVectorStoreFileBatchData (line 22190) | type CancelVectorStoreFileBatchData = { type CancelVectorStoreFileBatchResponses (line 22206) | type CancelVectorStoreFileBatchResponses = { type CancelVectorStoreFileBatchResponse (line 22213) | type CancelVectorStoreFileBatchResponse = CancelVectorStoreFileBatchResp... type ListFilesInVectorStoreBatchData (line 22215) | type ListFilesInVectorStoreBatchData = { type ListFilesInVectorStoreBatchResponses (line 22256) | type ListFilesInVectorStoreBatchResponses = { type ListFilesInVectorStoreBatchResponse (line 22263) | type ListFilesInVectorStoreBatchResponse = ListFilesInVectorStoreBatchRe... type ListVectorStoreFilesData (line 22265) | type ListVectorStoreFilesData = { type ListVectorStoreFilesResponses (line 22302) | type ListVectorStoreFilesResponses = { type ListVectorStoreFilesResponse2 (line 22309) | type ListVectorStoreFilesResponse2 = ListVectorStoreFilesResponses[keyof... type CreateVectorStoreFileData (line 22311) | type CreateVectorStoreFileData = { type CreateVectorStoreFileResponses (line 22324) | type CreateVectorStoreFileResponses = { type CreateVectorStoreFileResponse (line 22331) | type CreateVectorStoreFileResponse = CreateVectorStoreFileResponses[keyo... type DeleteVectorStoreFileData (line 22333) | type DeleteVectorStoreFileData = { type DeleteVectorStoreFileResponses (line 22349) | type DeleteVectorStoreFileResponses = { type DeleteVectorStoreFileResponse2 (line 22356) | type DeleteVectorStoreFileResponse2 = DeleteVectorStoreFileResponses[key... type GetVectorStoreFileData (line 22358) | type GetVectorStoreFileData = { type GetVectorStoreFileResponses (line 22374) | type GetVectorStoreFileResponses = { type GetVectorStoreFileResponse (line 22381) | type GetVectorStoreFileResponse = GetVectorStoreFileResponses[keyof GetV... type UpdateVectorStoreFileAttributesData (line 22383) | type UpdateVectorStoreFileAttributesData = { type UpdateVectorStoreFileAttributesResponses (line 22399) | type UpdateVectorStoreFileAttributesResponses = { type UpdateVectorStoreFileAttributesResponse (line 22406) | type UpdateVectorStoreFileAttributesResponse = UpdateVectorStoreFileAttr... type RetrieveVectorStoreFileContentData (line 22408) | type RetrieveVectorStoreFileContentData = { type RetrieveVectorStoreFileContentResponses (line 22424) | type RetrieveVectorStoreFileContentResponses = { type RetrieveVectorStoreFileContentResponse (line 22431) | type RetrieveVectorStoreFileContentResponse = RetrieveVectorStoreFileCon... type SearchVectorStoreData (line 22433) | type SearchVectorStoreData = { type SearchVectorStoreResponses (line 22445) | type SearchVectorStoreResponses = { type SearchVectorStoreResponse (line 22452) | type SearchVectorStoreResponse = SearchVectorStoreResponses[keyof Search... type PostBatchCancelledWebhookPayload (line 22457) | type PostBatchCancelledWebhookPayload = WebhookBatchCancelled; type PostBatchCancelledWebhookRequest (line 22459) | type PostBatchCancelledWebhookRequest = { type PostBatchCompletedWebhookPayload (line 22469) | type PostBatchCompletedWebhookPayload = WebhookBatchCompleted; type PostBatchCompletedWebhookRequest (line 22471) | type PostBatchCompletedWebhookRequest = { type PostBatchExpiredWebhookPayload (line 22481) | type PostBatchExpiredWebhookPayload = WebhookBatchExpired; type PostBatchExpiredWebhookRequest (line 22483) | type PostBatchExpiredWebhookRequest = { type PostBatchFailedWebhookPayload (line 22493) | type PostBatchFailedWebhookPayload = WebhookBatchFailed; type PostBatchFailedWebhookRequest (line 22495) | type PostBatchFailedWebhookRequest = { type PostEvalRunCanceledWebhookPayload (line 22505) | type PostEvalRunCanceledWebhookPayload = WebhookEvalRunCanceled; type PostEvalRunCanceledWebhookRequest (line 22507) | type PostEvalRunCanceledWebhookRequest = { type PostEvalRunFailedWebhookPayload (line 22517) | type PostEvalRunFailedWebhookPayload = WebhookEvalRunFailed; type PostEvalRunFailedWebhookRequest (line 22519) | type PostEvalRunFailedWebhookRequest = { type PostEvalRunSucceededWebhookPayload (line 22529) | type PostEvalRunSucceededWebhookPayload = WebhookEvalRunSucceeded; type PostEvalRunSucceededWebhookRequest (line 22531) | type PostEvalRunSucceededWebhookRequest = { type PostFineTuningJobCancelledWebhookPayload (line 22541) | type PostFineTuningJobCancelledWebhookPayload = WebhookFineTuningJobCanc... type PostFineTuningJobCancelledWebhookRequest (line 22543) | type PostFineTuningJobCancelledWebhookRequest = { type PostFineTuningJobFailedWebhookPayload (line 22553) | type PostFineTuningJobFailedWebhookPayload = WebhookFineTuningJobFailed; type PostFineTuningJobFailedWebhookRequest (line 22555) | type PostFineTuningJobFailedWebhookRequest = { type PostFineTuningJobSucceededWebhookPayload (line 22565) | type PostFineTuningJobSucceededWebhookPayload = WebhookFineTuningJobSucc... type PostFineTuningJobSucceededWebhookRequest (line 22567) | type PostFineTuningJobSucceededWebhookRequest = { type PostResponseCancelledWebhookPayload (line 22577) | type PostResponseCancelledWebhookPayload = WebhookResponseCancelled; type PostResponseCancelledWebhookRequest (line 22579) | type PostResponseCancelledWebhookRequest = { type PostResponseCompletedWebhookPayload (line 22589) | type PostResponseCompletedWebhookPayload = WebhookResponseCompleted; type PostResponseCompletedWebhookRequest (line 22591) | type PostResponseCompletedWebhookRequest = { type PostResponseFailedWebhookPayload (line 22601) | type PostResponseFailedWebhookPayload = WebhookResponseFailed; type PostResponseFailedWebhookRequest (line 22603) | type PostResponseFailedWebhookRequest = { type PostResponseIncompleteWebhookPayload (line 22613) | type PostResponseIncompleteWebhookPayload = WebhookResponseIncomplete; type PostResponseIncompleteWebhookRequest (line 22615) | type PostResponseIncompleteWebhookRequest = { FILE: examples/openapi-ts-pinia-colada/src/client/@pinia/colada.gen.ts type QueryKey (line 101) | type QueryKey = [ FILE: examples/openapi-ts-pinia-colada/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-pinia-colada/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-pinia-colada/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-pinia-colada/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-pinia-colada/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-pinia-colada/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-pinia-colada/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-pinia-colada/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-pinia-colada/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-pinia-colada/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-pinia-colada/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-pinia-colada/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-pinia-colada/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/app/app.component.ts class AppComponent (line 11) | class AppComponent { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/app/pet-store/pet-store.component.ts class PetStoreComponent (line 34) | class PetStoreComponent { method constructor (line 68) | constructor() { method getRandomPet (line 82) | getRandomPet() { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 114) | type QueryKey = [ FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/client/types.gen.ts type ResponseStyle (line 17) | type ResponseStyle = 'data' | 'fields'; type Config (line 19) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 95) | interface ResolvedRequestOptions< type RequestResult (line 103) | type RequestResult< type ClientOptions (line 138) | interface ClientOptions { type MethodFn (line 144) | type MethodFn = < type SseFn (line 153) | type SseFn = < type RequestFn (line 162) | type RequestFn = < type RequestOptionsFn (line 172) | type RequestOptionsFn = < type BuildUrlFn (line 180) | type BuildUrlFn = < type Client (line 191) | type Client = CoreClient... type CreateClientConfig (line 209) | type CreateClientConfig = ( type TDataShape (line 213) | interface TDataShape { type OmitKeys (line 221) | type OmitKeys = Pick>; type Options (line 223) | type Options< FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/client/utils.gen.ts type PathSerializer (line 14) | interface PathSerializer { constant PATH_PARAM_RE (line 19) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 21) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 22) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 23) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 312) | type ErrInterceptor = ( type ReqInterceptor (line 319) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 321) | type ResInterceptor = ( class Interceptors (line 327) | class Interceptors { method clear (line 330) | clear(): void { method eject (line 334) | eject(id: number | Interceptor): void { method exists (line 341) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 346) | getInterceptorIndex(id: number | Interceptor): number { method update (line 353) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 362) | use(fn: Interceptor): number { type Middleware (line 368) | interface Middleware { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-tanstack-angular-query-experimental/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-tanstack-react-query/src/App.tsx function App (line 52) | function App() { FILE: examples/openapi-ts-tanstack-react-query/src/client/@tanstack/react-query.gen.ts type QueryKey (line 89) | type QueryKey = [ FILE: examples/openapi-ts-tanstack-react-query/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-tanstack-react-query/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-tanstack-react-query/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-tanstack-react-query/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-tanstack-react-query/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-tanstack-react-query/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-tanstack-react-query/src/client/sdk.gen.ts type Options (line 65) | type Options< class HeyApiClient (line 82) | class HeyApiClient { method constructor (line 85) | constructor(args?: { client?: Client }) { class HeyApiRegistry (line 90) | class HeyApiRegistry { method get (line 95) | get(key?: string): T { method set (line 103) | set(value: T, key?: string): void { class Sdk (line 108) | class Sdk extends HeyApiClient { method constructor (line 111) | constructor(args?: { client?: Client; key?: string }) { method addPet (line 121) | public addPet(options: Options( method findPetsByStatus (line 157) | public findPetsByStatus( method findPetsByTags (line 176) | public findPetsByTags( method deletePet (line 195) | public deletePet( method getPetById (line 214) | public getPetById( method updatePetWithForm (line 234) | public updatePetWithForm( method uploadFile (line 253) | public uploadFile( method getInventory (line 277) | public getInventory( method placeOrder (line 296) | public placeOrder( method deleteOrder (line 318) | public deleteOrder( method getOrderById (line 333) | public getOrderById( method createUser (line 348) | public createUser( method createUsersWithListInput (line 370) | public createUsersWithListInput( method loginUser (line 392) | public loginUser( method logoutUser (line 406) | public logoutUser( method deleteUser (line 421) | public deleteUser( method getUserByName (line 436) | public getUserByName( method updateUser (line 451) | public updateUser( FILE: examples/openapi-ts-tanstack-react-query/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/@tanstack/svelte-query.gen.ts type QueryKey (line 110) | type QueryKey = [ FILE: examples/openapi-ts-tanstack-svelte-query/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-tanstack-svelte-query/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-tanstack-svelte-query/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-tanstack-svelte-query/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-tanstack-svelte-query/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: examples/openapi-ts-tanstack-svelte-query/src/routes/sverdle/game.ts class Game (line 3) | class Game { method constructor (line 12) | constructor(serialized: string | undefined = undefined) { method enter (line 32) | enter(letters: string[]) { method toString (line 72) | toString() { FILE: examples/openapi-ts-tanstack-vue-query/src/client/@tanstack/vue-query.gen.ts type QueryKey (line 110) | type QueryKey = [ FILE: examples/openapi-ts-tanstack-vue-query/src/client/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = ( FILE: examples/openapi-ts-tanstack-vue-query/src/client/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: examples/openapi-ts-tanstack-vue-query/src/client/client/types.gen.ts type ResponseStyle (line 8) | type ResponseStyle = 'data' | 'fields'; type Config (line 10) | interface Config type RequestOptions (line 53) | interface RequestOptions< type ResolvedRequestOptions (line 88) | interface ResolvedRequestOptions< type RequestResult (line 96) | type RequestResult< type ClientOptions (line 131) | interface ClientOptions { type MethodFn (line 137) | type MethodFn = < type SseFn (line 146) | type SseFn = < type RequestFn (line 155) | type RequestFn = < type BuildUrlFn (line 165) | type BuildUrlFn = < type Client (line 176) | type Client = CoreClient... type CreateClientConfig (line 188) | type CreateClientConfig = ( type TDataShape (line 192) | interface TDataShape { type OmitKeys (line 200) | type OmitKeys = Pick>; type Options (line 202) | type Options< FILE: examples/openapi-ts-tanstack-vue-query/src/client/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: examples/openapi-ts-tanstack-vue-query/src/client/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: examples/openapi-ts-tanstack-vue-query/src/client/sdk.gen.ts type Options (line 65) | type Options< FILE: examples/openapi-ts-tanstack-vue-query/src/client/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Order (line 7) | type Order = { type Category (line 19) | type Category = { type User (line 24) | type User = { type Tag (line 38) | type Tag = { type Pet (line 43) | type Pet = { type ApiResponse (line 55) | type ApiResponse = { type Pet2 (line 61) | type Pet2 = Pet; type UserArray (line 66) | type UserArray = Array; type AddPetData (line 68) | type AddPetData = { type AddPetErrors (line 78) | type AddPetErrors = { type AddPetResponses (line 93) | type AddPetResponses = { type AddPetResponse (line 100) | type AddPetResponse = AddPetResponses[keyof AddPetResponses]; type UpdatePetData (line 102) | type UpdatePetData = { type UpdatePetErrors (line 112) | type UpdatePetErrors = { type UpdatePetResponses (line 131) | type UpdatePetResponses = { type UpdatePetResponse (line 138) | type UpdatePetResponse = UpdatePetResponses[keyof UpdatePetResponses]; type FindPetsByStatusData (line 140) | type FindPetsByStatusData = { type FindPetsByStatusErrors (line 152) | type FindPetsByStatusErrors = { type FindPetsByStatusResponses (line 163) | type FindPetsByStatusResponses = { type FindPetsByStatusResponse (line 170) | type FindPetsByStatusResponse = FindPetsByStatusResponses[keyof FindPets... type FindPetsByTagsData (line 172) | type FindPetsByTagsData = { type FindPetsByTagsErrors (line 184) | type FindPetsByTagsErrors = { type FindPetsByTagsResponses (line 195) | type FindPetsByTagsResponses = { type FindPetsByTagsResponse (line 202) | type FindPetsByTagsResponse = FindPetsByTagsResponses[keyof FindPetsByTa... type DeletePetData (line 204) | type DeletePetData = { type DeletePetErrors (line 219) | type DeletePetErrors = { type DeletePetResponses (line 230) | type DeletePetResponses = { type GetPetByIdData (line 237) | type GetPetByIdData = { type GetPetByIdErrors (line 249) | type GetPetByIdErrors = { type GetPetByIdResponses (line 264) | type GetPetByIdResponses = { type GetPetByIdResponse (line 271) | type GetPetByIdResponse = GetPetByIdResponses[keyof GetPetByIdResponses]; type UpdatePetWithFormData (line 273) | type UpdatePetWithFormData = { type UpdatePetWithFormErrors (line 294) | type UpdatePetWithFormErrors = { type UpdatePetWithFormResponses (line 305) | type UpdatePetWithFormResponses = { type UpdatePetWithFormResponse (line 312) | type UpdatePetWithFormResponse = type UploadFileData (line 315) | type UploadFileData = { type UploadFileErrors (line 332) | type UploadFileErrors = { type UploadFileResponses (line 347) | type UploadFileResponses = { type UploadFileResponse (line 354) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type GetInventoryData (line 356) | type GetInventoryData = { type GetInventoryErrors (line 363) | type GetInventoryErrors = { type GetInventoryResponses (line 370) | type GetInventoryResponses = { type GetInventoryResponse (line 379) | type GetInventoryResponse = GetInventoryResponses[keyof GetInventoryResp... type PlaceOrderData (line 381) | type PlaceOrderData = { type PlaceOrderErrors (line 388) | type PlaceOrderErrors = { type PlaceOrderResponses (line 403) | type PlaceOrderResponses = { type PlaceOrderResponse (line 410) | type PlaceOrderResponse = PlaceOrderResponses[keyof PlaceOrderResponses]; type DeleteOrderData (line 412) | type DeleteOrderData = { type DeleteOrderErrors (line 424) | type DeleteOrderErrors = { type DeleteOrderResponses (line 439) | type DeleteOrderResponses = { type GetOrderByIdData (line 446) | type GetOrderByIdData = { type GetOrderByIdErrors (line 458) | type GetOrderByIdErrors = { type GetOrderByIdResponses (line 473) | type GetOrderByIdResponses = { type GetOrderByIdResponse (line 480) | type GetOrderByIdResponse = GetOrderByIdResponses[keyof GetOrderByIdResp... type CreateUserData (line 482) | type CreateUserData = { type CreateUserErrors (line 492) | type CreateUserErrors = { type CreateUserResponses (line 499) | type CreateUserResponses = { type CreateUserResponse (line 506) | type CreateUserResponse = CreateUserResponses[keyof CreateUserResponses]; type CreateUsersWithListInputData (line 508) | type CreateUsersWithListInputData = { type CreateUsersWithListInputErrors (line 515) | type CreateUsersWithListInputErrors = { type CreateUsersWithListInputResponses (line 522) | type CreateUsersWithListInputResponses = { type CreateUsersWithListInputResponse (line 529) | type CreateUsersWithListInputResponse = type LoginUserData (line 532) | type LoginUserData = { type LoginUserErrors (line 548) | type LoginUserErrors = { type LoginUserResponses (line 559) | type LoginUserResponses = { type LoginUserResponse (line 566) | type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses]; type LogoutUserData (line 568) | type LogoutUserData = { type LogoutUserErrors (line 575) | type LogoutUserErrors = { type LogoutUserResponses (line 582) | type LogoutUserResponses = { type DeleteUserData (line 589) | type DeleteUserData = { type DeleteUserErrors (line 601) | type DeleteUserErrors = { type DeleteUserResponses (line 616) | type DeleteUserResponses = { type GetUserByNameData (line 623) | type GetUserByNameData = { type GetUserByNameErrors (line 635) | type GetUserByNameErrors = { type GetUserByNameResponses (line 650) | type GetUserByNameResponses = { type GetUserByNameResponse (line 657) | type GetUserByNameResponse = GetUserByNameResponses[keyof GetUserByNameR... type UpdateUserData (line 659) | type UpdateUserData = { type UpdateUserErrors (line 674) | type UpdateUserErrors = { type UpdateUserResponses (line 689) | type UpdateUserResponses = { FILE: packages/codegen-core/src/__tests__/data/file.ts type _heyapi_5_ (line 3) | type _heyapi_5_ = string; type _heyapi_4_ (line 4) | type _heyapi_4_ = () => _heyapi_5_; class _heyapi_1_ (line 9) | class _heyapi_1_ { method _heyapi_2_ (line 11) | _heyapi_2_(_heyapi_12_: ReturnType<_heyapi_4_>): _heyapi_5_ { FILE: packages/codegen-core/src/__tests__/exports.test.ts type _TypeExports (line 31) | type _TypeExports = [ FILE: packages/codegen-core/src/__tests__/planner.test.ts method clone (line 40) | clone() { method clone (line 144) | clone() { method clone (line 193) | clone() { method clone (line 250) | clone() { FILE: packages/codegen-core/src/bindings.ts type ExportMember (line 4) | interface ExportMember { type ExportModule (line 21) | type ExportModule = Pick & { type ImportMember (line 32) | interface ImportMember { type ImportModule (line 48) | type ImportModule = Pick & FILE: packages/codegen-core/src/config/interactive.ts function detectInteractiveSession (line 6) | function detectInteractiveSession(): boolean { FILE: packages/codegen-core/src/config/load.ts function loadConfigFile (line 7) | async function loadConfigFile({ FILE: packages/codegen-core/src/config/merge.ts function isPlainObject (line 3) | function isPlainObject(value: unknown): value is AnyObject { function mergeConfigs (line 7) | function mergeConfigs( FILE: packages/codegen-core/src/extensions.ts type IProjectRenderMeta (line 6) | interface IProjectRenderMeta { type ISymbolMeta (line 15) | interface ISymbolMeta { FILE: packages/codegen-core/src/files/file.ts class File (line 13) | class File { method constructor (line 64) | constructor(input: IFileIn, id: number, project: IProject) { method exports (line 76) | get exports(): ReadonlyArray { method extension (line 83) | get extension(): string | undefined { method finalPath (line 98) | get finalPath(): string | undefined { method imports (line 107) | get imports(): ReadonlyArray { method language (line 114) | get language(): Language | undefined { method logicalFilePath (line 123) | get logicalFilePath(): string { method name (line 132) | get name(): string { method nodes (line 144) | get nodes(): ReadonlyArray { method renderer (line 151) | get renderer(): Renderer | undefined { method addExport (line 158) | addExport(group: ExportModule): void { method addImport (line 165) | addImport(group: ImportModule): void { method addNode (line 172) | addNode(node: Node): void { method setExtension (line 180) | setExtension(extension: string): void { method setFinalPath (line 187) | setFinalPath(path: string): void { method setLanguage (line 194) | setLanguage(lang: Language): void { method setName (line 201) | setName(name: string): void { method setRenderer (line 208) | setRenderer(renderer: Renderer): void { method toString (line 215) | toString(): string { FILE: packages/codegen-core/src/files/registry.ts type FileId (line 7) | type FileId = number; type FileKey (line 8) | type FileKey = string; class FileRegistry (line 10) | class FileRegistry implements IFileRegistry { method constructor (line 15) | constructor(project: IProject) { method get (line 19) | get(args: FileKeyArgs): File | undefined { method isRegistered (line 23) | isRegistered(args: FileKeyArgs): boolean { method nextId (line 27) | get nextId(): FileId { method register (line 31) | register(file: IFileIn): File { method registered (line 48) | *registered(): IterableIterator { method createFileKey (line 54) | private createFileKey(args: FileKeyArgs): string { FILE: packages/codegen-core/src/files/rules.ts type Rules (line 2) | interface Rules { FILE: packages/codegen-core/src/files/types.ts type FileKeyArgs (line 4) | type FileKeyArgs = Pick, 'logicalFilePath'> & type IFileIn (line 7) | type IFileIn = { type IFileRegistry (line 37) | interface IFileRegistry { FILE: packages/codegen-core/src/guards.ts function isBrand (line 6) | function isBrand(value: unknown, brand: string): value is INode { function isNode (line 11) | function isNode(value: unknown): value is INode { function isNodeRef (line 16) | function isNodeRef(value: Ref): value is Ref { function isSymbol (line 20) | function isSymbol(value: unknown): value is Symbol { function isSymbolRef (line 24) | function isSymbolRef(value: Ref): value is Ref { FILE: packages/codegen-core/src/languages/types.ts type Extensions (line 16) | type Extensions = Partial>>; type Language (line 18) | type Language = type ModuleEntryNames (line 59) | type ModuleEntryNames = Partial>; type NameConflictResolvers (line 61) | type NameConflictResolvers = Partial { function debug (line 39) | function debug(message: string, group: keyof typeof DebugGroups) { function warn (line 58) | function warn(message: string, group?: keyof typeof WarnGroups) { function warnDeprecated (line 66) | function warnDeprecated({ FILE: packages/codegen-core/src/logger.ts type LoggerEvent (line 3) | interface LoggerEvent { type Severity (line 11) | interface Severity { type StoredEventResult (line 16) | interface StoredEventResult { class Logger (line 54) | class Logger { method end (line 57) | private end(result: StoredEventResult): void { method endAllEvents (line 75) | private endAllEvents(events: Array): void { method report (line 86) | report(print: boolean = true): PerformanceMeasure | undefined { method reportEvent (line 122) | private reportEvent({ method start (line 169) | private start(id: string): PerformanceMark { method storeEvent (line 173) | private storeEvent({ method timeEvent (line 190) | timeEvent(name: string) { FILE: packages/codegen-core/src/nodes/node.ts type MaybeRef (line 7) | type MaybeRef = T | Ref; type NodeName (line 9) | type NodeName = MaybeRef; type NodeNameSanitizer (line 11) | type NodeNameSanitizer = (name: string) => string; type NodeRelationship (line 13) | type NodeRelationship = 'container' | 'reference'; type NodeScope (line 15) | type NodeScope = 'type' | 'value'; type INode (line 17) | interface INode { FILE: packages/codegen-core/src/nodes/registry.ts class NodeRegistry (line 6) | class NodeRegistry implements INodeRegistry { method add (line 9) | add(node: INode | null): number { method all (line 14) | *all(): Iterable { method remove (line 21) | remove(index: number): void { method update (line 25) | update(index: number, node: INode | null): void { FILE: packages/codegen-core/src/nodes/types.ts type INodeRegistry (line 3) | interface INodeRegistry { FILE: packages/codegen-core/src/output.ts type IOutput (line 1) | interface IOutput { FILE: packages/codegen-core/src/planner/analyzer.ts class AnalysisContext (line 10) | class AnalysisContext implements IAnalysisContext { method constructor (line 22) | constructor(node: INode) { method currentParent (line 31) | get currentParent(): INode | undefined { method addChild (line 38) | addChild(child: INode, relationship: NodeRelationship = 'container'): ... method addDependency (line 53) | addDependency(symbol: Ref): void { method analyze (line 59) | analyze(input: Input): void { method localNames (line 77) | localNames(scope: Scope): NameScopes { method popParent (line 102) | popParent(): void { method popScope (line 106) | popScope(): void { method pushParent (line 113) | pushParent(node: INode): void { method pushScope (line 117) | pushScope(): void { method walkScopes (line 123) | walkScopes( class Analyzer (line 139) | class Analyzer { method analyzeNode (line 142) | analyzeNode(node: INode): AnalysisContext { method analyze (line 154) | analyze(nodes: Iterable, callback?: (ctx: AnalysisContext, node... FILE: packages/codegen-core/src/planner/planner.ts class Planner (line 20) | class Planner { method constructor (line 25) | constructor(project: IProject) { method plan (line 32) | plan(meta?: IProjectRenderMeta) { method allocateFiles (line 45) | private allocateFiles(): void { method assignLocalNames (line 83) | private assignLocalNames(): void { method resolveFilePaths (line 115) | private resolveFilePaths(meta?: IProjectRenderMeta): void { method planExports (line 141) | private planExports(): void { method planImports (line 232) | private planImports(): void { method assignTopLevelName (line 348) | private assignTopLevelName( method assignLocalName (line 376) | private assignLocalName( method assignSymbolName (line 400) | private assignSymbolName( method updateScope (line 455) | private updateScope(symbol: Symbol, scope: Scope): void { FILE: packages/codegen-core/src/planner/scope.ts type NameScopes (line 5) | type NameScopes = Map>; type Scope (line 7) | type Scope = { type AssignOptions (line 18) | type AssignOptions = { FILE: packages/codegen-core/src/planner/types.ts type Input (line 5) | type Input = Ref | object | string | number | undefined; type NameConflictResolver (line 7) | type NameConflictResolver = (args: { attempt: number; baseName: string }... type IAnalysisContext (line 9) | interface IAnalysisContext { FILE: packages/codegen-core/src/project/namespace.ts function canTypeScriptDeclarationsShareIdentifier (line 18) | function canTypeScriptDeclarationsShareIdentifier(a: SymbolKind, b: Symb... function canDeclarationsShareIdentifier (line 38) | function canDeclarationsShareIdentifier( FILE: packages/codegen-core/src/project/project.ts class Project (line 18) | class Project implements IProject { method constructor (line 34) | constructor( method plan (line 69) | plan(meta?: IProjectRenderMeta): void { method render (line 75) | render(meta?: IProjectRenderMeta): ReadonlyArray { FILE: packages/codegen-core/src/project/types.ts type IProject (line 15) | interface IProject { FILE: packages/codegen-core/src/refs/types.ts type Ref (line 11) | type Ref = T extends { ['~ref']: unknown } ? T : { '~ref': T }; type Refs (line 24) | type Refs = { type FromRef (line 36) | type FromRef = T extends { '~ref': infer U } ? U : T; type FromRefs (line 48) | type FromRefs = { FILE: packages/codegen-core/src/renderer.ts type RenderContext (line 6) | interface RenderContext { type Renderer (line 21) | interface Renderer { FILE: packages/codegen-core/src/structure/model.ts class StructureModel (line 4) | class StructureModel { method roots (line 13) | get roots(): ReadonlyArray { method insert (line 22) | insert(args: StructureInsert): void { method root (line 65) | root(name: string | null): StructureNode { method walk (line 82) | *walk(): Generator { FILE: packages/codegen-core/src/structure/node.ts class StructureNode (line 3) | class StructureNode { method constructor (line 19) | constructor( method isRoot (line 31) | get isRoot(): boolean { method child (line 43) | child(name: string): StructureNode { method getPath (line 55) | getPath(): ReadonlyArray { method itemsFrom (line 72) | *itemsFrom(source: symbol): Generator { FILE: packages/codegen-core/src/structure/types.ts type StructureInsert (line 4) | interface StructureInsert { type StructureItem (line 13) | interface StructureItem extends Pick { type StructureLocation (line 18) | interface StructureLocation { type StructureShell (line 25) | interface StructureShell { type StructureShellResult (line 29) | interface StructureShellResult { FILE: packages/codegen-core/src/symbols/registry.ts type IndexEntry (line 5) | type IndexEntry = [string, unknown]; type IndexKeySpace (line 6) | type IndexKeySpace = ReadonlyArray; type QueryCacheKey (line 7) | type QueryCacheKey = string; type SymbolId (line 8) | type SymbolId = number; class SymbolRegistry (line 10) | class SymbolRegistry implements ISymbolRegistry { method get (line 20) | get(identifier: ISymbolIdentifier): Symbol | undefined { method isRegistered (line 26) | isRegistered(identifier: ISymbolIdentifier): boolean { method nextId (line 31) | get nextId(): SymbolId { method query (line 35) | query(filter: ISymbolMeta): ReadonlyArray { method reference (line 74) | reference(meta: ISymbolMeta): Symbol { method register (line 90) | register(symbol: ISymbolIn): Symbol { method registered (line 106) | *registered(): IterableIterator { method buildCacheKey (line 112) | private buildCacheKey(filter: ISymbolMeta): QueryCacheKey { method buildIndexKeySpace (line 120) | private buildIndexKeySpace(meta: ISymbolMeta, prefix = ''): IndexKeySp... method indexSymbol (line 133) | private indexSymbol(symbolId: SymbolId, indexKeySpace: IndexKeySpace):... method invalidateCache (line 143) | private invalidateCache(indexKeySpace: IndexKeySpace): void { method isSubset (line 156) | private isSubset(sub: IndexKeySpace, sup: IndexKeySpace): boolean { method replaceStubs (line 166) | private replaceStubs(symbol: Symbol, indexKeySpace: IndexKeySpace): vo... method serializeIndexEntry (line 178) | private serializeIndexEntry(indexEntry: IndexEntry): string { FILE: packages/codegen-core/src/symbols/symbol.ts class Symbol (line 8) | class Symbol { method constructor (line 86) | constructor(input: ISymbolIn, id: number) { method canonical (line 105) | get canonical(): Symbol { method exported (line 112) | get exported(): boolean { method external (line 119) | get external(): string | undefined { method file (line 128) | get file(): File | undefined { method finalName (line 135) | get finalName(): string { method getExportFromFilePath (line 147) | get getExportFromFilePath(): ((symbol: Symbol) => ReadonlyArray string | undefined) | undefined { method importKind (line 161) | get importKind(): BindingKind { method isCanonical (line 168) | get isCanonical(): boolean { method kind (line 175) | get kind(): SymbolKind { method meta (line 182) | get meta(): ISymbolMeta | undefined { method name (line 189) | get name(): string { method node (line 196) | get node(): Node | undefined { method setCanonical (line 208) | setCanonical(symbol: Symbol): void { method setExported (line 217) | setExported(exported: boolean): void { method setFile (line 227) | setFile(file: File): void { method setFinalName (line 242) | setFinalName(name: string): void { method setImportKind (line 257) | setImportKind(kind: BindingKind): void { method setKind (line 267) | setKind(kind: SymbolKind): void { method setName (line 277) | setName(name: string): void { method setNode (line 287) | setNode(node: Node): void { method toString (line 303) | toString(): string { method assertCanonical (line 321) | private assertCanonical(): void { FILE: packages/codegen-core/src/symbols/types.ts type BindingKind (line 4) | type BindingKind = 'default' | 'named' | 'namespace'; type ISymbolIdentifier (line 6) | type ISymbolIdentifier = number | ISymbolMeta; type SymbolKind (line 8) | type SymbolKind = 'class' | 'enum' | 'function' | 'interface' | 'namespa... type ISymbolIn (line 10) | type ISymbolIn = { type ISymbolRegistry (line 64) | interface ISymbolRegistry { FILE: packages/custom-client/src/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/custom-client/src/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/custom-client/src/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/custom-client/src/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/custom-client/src/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/custom-client/src/core/types.ts type Client (line 4) | interface Client = [T] extends [never] type OmitNever (line 90) | type OmitNever> = { FILE: packages/custom-client/src/plugin.ts type Config (line 10) | type Config = Client.Config & { type CustomClientPlugin (line 17) | type CustomClientPlugin = DefinePlugin; FILE: packages/custom-client/src/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/custom-client/src/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/json-schema-ref-parser/src/bundle.ts type InventoryEntry (line 10) | interface InventoryEntry { function remap (line 405) | function remap(parser: $RefParser, inventory: Array) { function removeFromInventory (line 652) | function removeFromInventory(inventory: Array, entry: an... function bundle (line 665) | function bundle(parser: $RefParser, options: ParserOptions): void { FILE: packages/json-schema-ref-parser/src/dereference.ts function crawl (line 25) | function crawl( function dereference$Ref (line 152) | function dereference$Ref( function foundCircularReference (line 256) | function foundCircularReference(keyPath: any, $refs: any, options: any) { FILE: packages/json-schema-ref-parser/src/index.ts type ResolvedInput (line 14) | interface ResolvedInput { function getResolvedInput (line 20) | function getResolvedInput({ class $RefParser (line 71) | class $RefParser { method bundle (line 100) | public async bundle({ method bundleMany (line 135) | public async bundleMany({ method parse (line 172) | public async parse({ method parseMany (line 232) | private async parseMany({ method mergeMany (line 298) | public mergeMany(): JSONSchema { FILE: packages/json-schema-ref-parser/src/options.ts type DereferenceOptions (line 7) | interface DereferenceOptions { type $RefParserOptions (line 44) | interface $RefParserOptions { type Options (line 105) | type Options = $RefParserOptions; type DeepPartial (line 107) | type DeepPartial = T extends object type ParserOptions (line 112) | type ParserOptions = DeepPartial<$RefParserOptions>; FILE: packages/json-schema-ref-parser/src/parse.ts function newFile (line 15) | function newFile(path: string): FileInfo { function parseFile (line 34) | async function parseFile( FILE: packages/json-schema-ref-parser/src/parsers/binary.ts constant BINARY_REGEXP (line 3) | const BINARY_REGEXP = /\.(jpeg|jpg|gif|png|bmp|ico)$/i; FILE: packages/json-schema-ref-parser/src/parsers/json.ts method handler (line 6) | async handler(file: FileInfo): Promise { FILE: packages/json-schema-ref-parser/src/parsers/text.ts constant TEXT_REGEXP (line 4) | const TEXT_REGEXP = /\.(txt|htm|html|md|xml|js|min|map|css|scss|less|svg... method handler (line 9) | handler(file: FileInfo): string { FILE: packages/json-schema-ref-parser/src/pointer.ts class Pointer (line 33) | class Pointer { method constructor (line 66) | constructor($ref: $Ref, path: string, friendlyPath?: string) { method resolve (line 93) | resolve(obj: S, options?: ParserOptions, pathFromRoot?: string) { method set (line 170) | set(obj: S, value: any, options?: ParserOptions) { method parse (line 217) | static parse(path: string, originalPath?: string): string[] { method join (line 251) | static join(base: string, tokens: string | string[]) { function resolveIf$Ref (line 280) | function resolveIf$Ref(pointer: any, options: any, pathFromRoot?: any) { function setValue (line 327) | function setValue(pointer: any, token: any, value: any) { function unwrapOrThrow (line 342) | function unwrapOrThrow(value: any) { function isRootPath (line 350) | function isRootPath(pathFromRoot: any): boolean { FILE: packages/json-schema-ref-parser/src/ref.ts type $RefError (line 13) | type $RefError = JSONParserError | ResolverError | ParserError | Missing... class $Ref (line 20) | class $Ref { method constructor (line 58) | constructor($refs: $Refs) { method addError (line 68) | addError(err: $RefError) { method exists (line 96) | exists(path: string, options?: ParserOptions) { method get (line 112) | get(path: string, options?: ParserOptions) { method resolve (line 125) | resolve(path: string, options?: ParserOptions, friendlyPath?: string, ... method set (line 137) | set(path: string, value: any) { method is$Ref (line 148) | static is$Ref(value: unknown): value is { $ref: string; length?: numbe... method isExternal$Ref (line 165) | static isExternal$Ref(value: unknown): boolean { method isAllowed$Ref (line 176) | static isAllowed$Ref(value: unknown) { method isExtended$Ref (line 223) | static isExtended$Ref(value: unknown) { method dereference (line 258) | static dereference($ref: $Ref, resol... FILE: packages/json-schema-ref-parser/src/refs.ts type $RefsMap (line 10) | interface $RefsMap { class $Refs (line 20) | class $Refs { method paths (line 35) | paths(...types: (string | string[])[]): string[] { method values (line 47) | values(...types: (string | string[])[]): S { method exists (line 70) | exists(path: string, options: any) { method get (line 86) | get(path: string, options?: ParserOptions): JSONSchema4Type | JSONSche... method set (line 96) | set(path: string, value: JSONSchema4Type | JSONSchema6Type | JSONSchem... method _get$Ref (line 114) | _get$Ref(path: string) { method _add (line 125) | _add(path: string) { method _resolve (line 146) | _resolve(path: string, pathFromRoot: string, options?: ParserOptions) { method constructor (line 179) | constructor() { function getPaths (line 222) | function getPaths($refs: $RefsMap, typ... FILE: packages/json-schema-ref-parser/src/resolve-external.ts function resolveExternal (line 24) | async function resolveExternal(parser: $RefParser, options: $RefParserOp... function crawl (line 42) | function crawl( function resolve$Ref (line 104) | async function resolve$Ref( FILE: packages/json-schema-ref-parser/src/types/index.ts type JSONSchema (line 10) | type JSONSchema = JSONSchema4 | JSONSchema6 | JSONSchema7; type JSONSchemaObject (line 11) | type JSONSchemaObject = JSONSchema4Object | JSONSchema6Object | JSONSche... type Plugin (line 13) | interface Plugin { type FileInfo (line 41) | interface FileInfo { FILE: packages/json-schema-ref-parser/src/util/convert-path-to-posix.ts function convertPathToPosix (line 1) | function convertPathToPosix(filePath: string): string { FILE: packages/json-schema-ref-parser/src/util/errors.ts type JSONParserErrorType (line 8) | type JSONParserErrorType = class JSONParserError (line 18) | class JSONParserError extends Error { method constructor (line 24) | public constructor(message: string, source?: string) { method footprint (line 36) | get footprint() { class JSONParserErrorGroup (line 41) | class JSONParserErrorGroup extends Error { method constructor (line 44) | constructor(parser: $RefParser) { method getParserErrors (line 56) | static getParserErrors(parser: $RefPars... method errors (line 68) | get errors(): Array< class ParserError (line 81) | class ParserError extends JSONParserError { method constructor (line 84) | constructor(message: any, source: any) { class UnmatchedParserError (line 89) | class UnmatchedParserError extends JSONParserError { method constructor (line 93) | constructor(source: string) { class ResolverError (line 98) | class ResolverError extends JSONParserError { method constructor (line 102) | constructor(ex: Error | any, source?: string) { class UnmatchedResolverError (line 110) | class UnmatchedResolverError extends JSONParserError { method constructor (line 113) | constructor(source: any) { class MissingPointerError (line 118) | class MissingPointerError extends JSONParserError { method constructor (line 121) | constructor(token: string, path: string) { class TimeoutError (line 129) | class TimeoutError extends JSONParserError { method constructor (line 132) | constructor(timeout: number) { class InvalidPointerError (line 137) | class InvalidPointerError extends JSONParserError { method constructor (line 140) | constructor(pointer: string, path: string) { function isHandledError (line 145) | function isHandledError(err: any): err is JSONParserError { function normalizeError (line 149) | function normalizeError(err: any) { FILE: packages/json-schema-ref-parser/src/util/plugins.ts type PluginResult (line 3) | interface PluginResult { function run (line 17) | async function run(plugins: Pick[], file: FileInfo) { FILE: packages/json-schema-ref-parser/src/util/url.ts function resolve (line 23) | function resolve(from: string, to: string) { function cwd (line 40) | function cwd() { function getProtocol (line 61) | function getProtocol(path: string | undefined) { function getExtension (line 76) | function getExtension(path: any) { function stripQuery (line 90) | function stripQuery(path: any) { function getHash (line 105) | function getHash(path: undefined | string) { function stripHash (line 122) | function stripHash(path?: string | undefined) { function isFileSystemPath (line 140) | function isFileSystemPath(path: string | undefined) { function fromFileSystemPath (line 168) | function fromFileSystemPath(path: string) { function toFileSystemPath (line 206) | function toFileSystemPath(path: string | undefined, keepFileProtocol?: b... function relative (line 255) | function relative(from: string, to: string) { FILE: packages/nuxt/src/module.ts type ModuleOptions (line 12) | interface ModuleOptions { method setup (line 42) | async setup(options) { FILE: packages/openapi-python-tests/pydantic/v2/__snapshots__/3.1.x/opencode/pydantic_gen.py class EventInstallationUpdatedProperties (line 8) | class EventInstallationUpdatedProperties(BaseModel): class EventInstallationUpdated (line 12) | class EventInstallationUpdated(BaseModel): class EventInstallationUpdateAvailableProperties (line 17) | class EventInstallationUpdateAvailableProperties(BaseModel): class EventInstallationUpdateAvailable (line 21) | class EventInstallationUpdateAvailable(BaseModel): class ProjectIcon (line 26) | class ProjectIcon(BaseModel): class ProjectTime (line 31) | class ProjectTime(BaseModel): class Project (line 37) | class Project(BaseModel): class EventProjectUpdated (line 46) | class EventProjectUpdated(BaseModel): class EventServerInstanceDisposedProperties (line 51) | class EventServerInstanceDisposedProperties(BaseModel): class EventServerInstanceDisposed (line 55) | class EventServerInstanceDisposed(BaseModel): class EventLspClientDiagnosticsProperties (line 60) | class EventLspClientDiagnosticsProperties(BaseModel): class EventLspClientDiagnostics (line 65) | class EventLspClientDiagnostics(BaseModel): class EventLspUpdated (line 70) | class EventLspUpdated(BaseModel): class FileDiff (line 75) | class FileDiff(BaseModel): class UserMessageTime (line 83) | class UserMessageTime(BaseModel): class UserMessageSummary (line 87) | class UserMessageSummary(BaseModel): class UserMessageModel (line 93) | class UserMessageModel(BaseModel): class UserMessage (line 98) | class UserMessage(BaseModel): class ProviderAuthErrorData (line 111) | class ProviderAuthErrorData(BaseModel): class ProviderAuthError (line 116) | class ProviderAuthError(BaseModel): class UnknownErrorData (line 121) | class UnknownErrorData(BaseModel): class UnknownError (line 125) | class UnknownError(BaseModel): class MessageOutputLengthError (line 130) | class MessageOutputLengthError(BaseModel): class MessageAbortedErrorData (line 135) | class MessageAbortedErrorData(BaseModel): class MessageAbortedError (line 139) | class MessageAbortedError(BaseModel): class ApiErrorData (line 144) | class ApiErrorData(BaseModel): class ApiError (line 153) | class ApiError(BaseModel): class AssistantMessageTime (line 158) | class AssistantMessageTime(BaseModel): class AssistantMessagePath (line 163) | class AssistantMessagePath(BaseModel): class AssistantMessageTokensCache (line 168) | class AssistantMessageTokensCache(BaseModel): class AssistantMessageTokens (line 173) | class AssistantMessageTokens(BaseModel): class AssistantMessage (line 180) | class AssistantMessage(BaseModel): class EventMessageUpdatedProperties (line 201) | class EventMessageUpdatedProperties(BaseModel): class EventMessageUpdated (line 205) | class EventMessageUpdated(BaseModel): class EventMessageRemovedProperties (line 210) | class EventMessageRemovedProperties(BaseModel): class EventMessageRemoved (line 215) | class EventMessageRemoved(BaseModel): class TextPartTime (line 220) | class TextPartTime(BaseModel): class TextPart (line 225) | class TextPart(BaseModel): class ReasoningPartTime (line 237) | class ReasoningPartTime(BaseModel): class ReasoningPart (line 242) | class ReasoningPart(BaseModel): class FilePartSourceText (line 252) | class FilePartSourceText(BaseModel): class FileSource (line 258) | class FileSource(BaseModel): class RangeStart (line 264) | class RangeStart(BaseModel): class RangeEnd (line 269) | class RangeEnd(BaseModel): class Range (line 274) | class Range(BaseModel): class SymbolSource (line 279) | class SymbolSource(BaseModel): class FilePart (line 291) | class FilePart(BaseModel): class ToolStatePending (line 302) | class ToolStatePending(BaseModel): class ToolStateRunningTime (line 308) | class ToolStateRunningTime(BaseModel): class ToolStateRunning (line 312) | class ToolStateRunning(BaseModel): class ToolStateCompletedTime (line 320) | class ToolStateCompletedTime(BaseModel): class ToolStateCompleted (line 326) | class ToolStateCompleted(BaseModel): class ToolStateErrorTime (line 336) | class ToolStateErrorTime(BaseModel): class ToolStateError (line 341) | class ToolStateError(BaseModel): class ToolPart (line 352) | class ToolPart(BaseModel): class StepStartPart (line 363) | class StepStartPart(BaseModel): class StepFinishPartTokensCache (line 371) | class StepFinishPartTokensCache(BaseModel): class StepFinishPartTokens (line 376) | class StepFinishPartTokens(BaseModel): class StepFinishPart (line 383) | class StepFinishPart(BaseModel): class SnapshotPart (line 394) | class SnapshotPart(BaseModel): class PatchPart (line 402) | class PatchPart(BaseModel): class AgentPartSource (line 411) | class AgentPartSource(BaseModel): class AgentPart (line 417) | class AgentPart(BaseModel): class RetryPartTime (line 426) | class RetryPartTime(BaseModel): class RetryPart (line 430) | class RetryPart(BaseModel): class CompactionPart (line 440) | class CompactionPart(BaseModel): class Part (line 448) | class Part(BaseModel): class EventMessagePartUpdatedProperties (line 462) | class EventMessagePartUpdatedProperties(BaseModel): class EventMessagePartUpdated (line 467) | class EventMessagePartUpdated(BaseModel): class EventMessagePartRemovedProperties (line 472) | class EventMessagePartRemovedProperties(BaseModel): class EventMessagePartRemoved (line 478) | class EventMessagePartRemoved(BaseModel): class PermissionRequestTool (line 483) | class PermissionRequestTool(BaseModel): class PermissionRequest (line 488) | class PermissionRequest(BaseModel): class EventPermissionAsked (line 498) | class EventPermissionAsked(BaseModel): class EventPermissionRepliedPropertiesReply (line 503) | class EventPermissionRepliedPropertiesReply(Enum, str): class EventPermissionRepliedProperties (line 509) | class EventPermissionRepliedProperties(BaseModel): class EventPermissionReplied (line 515) | class EventPermissionReplied(BaseModel): class SessionStatus (line 520) | class SessionStatus(BaseModel): class SessionStatus_2 (line 524) | class SessionStatus_2(BaseModel): class SessionStatus_3 (line 531) | class SessionStatus_3(BaseModel): class EventSessionStatusProperties (line 538) | class EventSessionStatusProperties(BaseModel): class EventSessionStatus (line 543) | class EventSessionStatus(BaseModel): class EventSessionIdleProperties (line 548) | class EventSessionIdleProperties(BaseModel): class EventSessionIdle (line 552) | class EventSessionIdle(BaseModel): class EventSessionCompactedProperties (line 557) | class EventSessionCompactedProperties(BaseModel): class EventSessionCompacted (line 561) | class EventSessionCompacted(BaseModel): class EventFileEditedProperties (line 566) | class EventFileEditedProperties(BaseModel): class EventFileEdited (line 570) | class EventFileEdited(BaseModel): class Todo (line 575) | class Todo(BaseModel): class EventTodoUpdatedProperties (line 582) | class EventTodoUpdatedProperties(BaseModel): class EventTodoUpdated (line 587) | class EventTodoUpdated(BaseModel): class EventTuiPromptAppendProperties (line 592) | class EventTuiPromptAppendProperties(BaseModel): class EventTuiPromptAppend (line 596) | class EventTuiPromptAppend(BaseModel): class EventTuiCommandExecutePropertiesCommand (line 601) | class EventTuiCommandExecutePropertiesCommand(Enum, str): class EventTuiCommandExecuteProperties (line 618) | class EventTuiCommandExecuteProperties(BaseModel): class EventTuiCommandExecute (line 622) | class EventTuiCommandExecute(BaseModel): class EventTuiToastShowPropertiesVariant (line 627) | class EventTuiToastShowPropertiesVariant(Enum, str): class EventTuiToastShowProperties (line 634) | class EventTuiToastShowProperties(BaseModel): class EventTuiToastShow (line 641) | class EventTuiToastShow(BaseModel): class EventMcpToolsChangedProperties (line 646) | class EventMcpToolsChangedProperties(BaseModel): class EventMcpToolsChanged (line 650) | class EventMcpToolsChanged(BaseModel): class EventCommandExecutedProperties (line 655) | class EventCommandExecutedProperties(BaseModel): class EventCommandExecuted (line 662) | class EventCommandExecuted(BaseModel): class PermissionAction (line 667) | class PermissionAction(Enum, str): class PermissionRule (line 673) | class PermissionRule(BaseModel): class SessionSummary (line 682) | class SessionSummary(BaseModel): class SessionShare (line 689) | class SessionShare(BaseModel): class SessionTime (line 693) | class SessionTime(BaseModel): class SessionRevert (line 700) | class SessionRevert(BaseModel): class Session (line 707) | class Session(BaseModel): class EventSessionCreatedProperties (line 721) | class EventSessionCreatedProperties(BaseModel): class EventSessionCreated (line 725) | class EventSessionCreated(BaseModel): class EventSessionUpdatedProperties (line 730) | class EventSessionUpdatedProperties(BaseModel): class EventSessionUpdated (line 734) | class EventSessionUpdated(BaseModel): class EventSessionDeletedProperties (line 739) | class EventSessionDeletedProperties(BaseModel): class EventSessionDeleted (line 743) | class EventSessionDeleted(BaseModel): class EventSessionDiffProperties (line 748) | class EventSessionDiffProperties(BaseModel): class EventSessionDiff (line 753) | class EventSessionDiff(BaseModel): class EventSessionErrorProperties (line 758) | class EventSessionErrorProperties(BaseModel): class EventSessionError (line 763) | class EventSessionError(BaseModel): class EventFileWatcherUpdatedProperties (line 768) | class EventFileWatcherUpdatedProperties(BaseModel): class EventFileWatcherUpdated (line 773) | class EventFileWatcherUpdated(BaseModel): class EventVcsBranchUpdatedProperties (line 778) | class EventVcsBranchUpdatedProperties(BaseModel): class EventVcsBranchUpdated (line 782) | class EventVcsBranchUpdated(BaseModel): class PtyStatus (line 787) | class PtyStatus(Enum, str): class Pty (line 792) | class Pty(BaseModel): class EventPtyCreatedProperties (line 802) | class EventPtyCreatedProperties(BaseModel): class EventPtyCreated (line 806) | class EventPtyCreated(BaseModel): class EventPtyUpdatedProperties (line 811) | class EventPtyUpdatedProperties(BaseModel): class EventPtyUpdated (line 815) | class EventPtyUpdated(BaseModel): class EventPtyExitedProperties (line 820) | class EventPtyExitedProperties(BaseModel): class EventPtyExited (line 825) | class EventPtyExited(BaseModel): class EventPtyDeletedProperties (line 830) | class EventPtyDeletedProperties(BaseModel): class EventPtyDeleted (line 834) | class EventPtyDeleted(BaseModel): class EventServerConnected (line 839) | class EventServerConnected(BaseModel): class EventGlobalDisposed (line 844) | class EventGlobalDisposed(BaseModel): class GlobalEvent (line 852) | class GlobalEvent(BaseModel): class BadRequestError (line 857) | class BadRequestError(BaseModel): class NotFoundErrorData (line 863) | class NotFoundErrorData(BaseModel): class NotFoundError (line 867) | class NotFoundError(BaseModel): class KeybindsConfig (line 872) | class KeybindsConfig(BaseModel): class LogLevel (line 962) | class LogLevel(Enum, str): class ServerConfig (line 969) | class ServerConfig(BaseModel): class PermissionActionConfig (line 976) | class PermissionActionConfig(Enum, str): class PermissionConfig (line 988) | class PermissionConfig(BaseModel): class ProviderConfigModelsValueInterleavedField (line 1012) | class ProviderConfigModelsValueInterleavedField(Enum, str): class ProviderConfigModelsValueInterleaved (line 1017) | class ProviderConfigModelsValueInterleaved(BaseModel): class ProviderConfigModelsValueCostContextOver200k (line 1021) | class ProviderConfigModelsValueCostContextOver200k(BaseModel): class ProviderConfigModelsValueCost (line 1028) | class ProviderConfigModelsValueCost(BaseModel): class ProviderConfigModelsValueLimit (line 1036) | class ProviderConfigModelsValueLimit(BaseModel): class ProviderConfigModelsValueModalitiesInput (line 1041) | class ProviderConfigModelsValueModalitiesInput(Enum, str): class ProviderConfigModelsValueModalitiesOutput (line 1049) | class ProviderConfigModelsValueModalitiesOutput(Enum, str): class ProviderConfigModelsValueModalities (line 1057) | class ProviderConfigModelsValueModalities(BaseModel): class ProviderConfigModelsValueStatus (line 1062) | class ProviderConfigModelsValueStatus(Enum, str): class ProviderConfigModelsValueProvider (line 1068) | class ProviderConfigModelsValueProvider(BaseModel): class ProviderConfigModelsValue (line 1075) | class ProviderConfigModelsValue(BaseModel): class ProviderConfig (line 1099) | class ProviderConfig(BaseModel): class McpLocalConfig (line 1111) | class McpLocalConfig(BaseModel): class McpOAuthConfig (line 1119) | class McpOAuthConfig(BaseModel): class McpRemoteConfig (line 1125) | class McpRemoteConfig(BaseModel): class LayoutConfig (line 1134) | class LayoutConfig(Enum, str): class ConfigTuiScrollAcceleration (line 1139) | class ConfigTuiScrollAcceleration(BaseModel): class ConfigTuiDiffStyle (line 1143) | class ConfigTuiDiffStyle(Enum, str): class ConfigTui (line 1148) | class ConfigTui(BaseModel): class ConfigCommandValue (line 1154) | class ConfigCommandValue(BaseModel): class ConfigWatcher (line 1162) | class ConfigWatcher(BaseModel): class ConfigShare (line 1166) | class ConfigShare(Enum, str): class ConfigMode (line 1172) | class ConfigMode(BaseModel): class ConfigAgent (line 1177) | class ConfigAgent(BaseModel): class ConfigFormatterValue (line 1187) | class ConfigFormatterValue(BaseModel): class ConfigEnterprise (line 1194) | class ConfigEnterprise(BaseModel): class ConfigCompaction (line 1198) | class ConfigCompaction(BaseModel): class ConfigExperimentalHookFileEditedValue (line 1203) | class ConfigExperimentalHookFileEditedValue(BaseModel): class ConfigExperimentalHookSessionCompleted (line 1208) | class ConfigExperimentalHookSessionCompleted(BaseModel): class ConfigExperimentalHook (line 1213) | class ConfigExperimentalHook(BaseModel): class ConfigExperimental (line 1218) | class ConfigExperimental(BaseModel): class Config (line 1229) | class Config(BaseModel): class ToolListItem (line 1267) | class ToolListItem(BaseModel): class Path (line 1276) | class Path(BaseModel): class VcsInfo (line 1284) | class VcsInfo(BaseModel): class TextPartInputTime (line 1288) | class TextPartInputTime(BaseModel): class TextPartInput (line 1293) | class TextPartInput(BaseModel): class FilePartInput (line 1303) | class FilePartInput(BaseModel): class AgentPartInputSource (line 1312) | class AgentPartInputSource(BaseModel): class AgentPartInput (line 1318) | class AgentPartInput(BaseModel): class SubtaskPartInput (line 1325) | class SubtaskPartInput(BaseModel): class Command (line 1334) | class Command(BaseModel): class ModelApi (line 1345) | class ModelApi(BaseModel): class ModelCapabilitiesInput (line 1351) | class ModelCapabilitiesInput(BaseModel): class ModelCapabilitiesOutput (line 1359) | class ModelCapabilitiesOutput(BaseModel): class ModelCapabilitiesInterleavedField (line 1367) | class ModelCapabilitiesInterleavedField(Enum, str): class ModelCapabilitiesInterleaved (line 1372) | class ModelCapabilitiesInterleaved(BaseModel): class ModelCapabilities (line 1376) | class ModelCapabilities(BaseModel): class ModelCostCache (line 1386) | class ModelCostCache(BaseModel): class ModelCostExperimentalOver200kCache (line 1391) | class ModelCostExperimentalOver200kCache(BaseModel): class ModelCostExperimentalOver200k (line 1396) | class ModelCostExperimentalOver200k(BaseModel): class ModelCost (line 1402) | class ModelCost(BaseModel): class ModelLimit (line 1409) | class ModelLimit(BaseModel): class ModelStatus (line 1414) | class ModelStatus(Enum, str): class Model (line 1421) | class Model(BaseModel): class ProviderSource (line 1437) | class ProviderSource(Enum, str): class Provider (line 1444) | class Provider(BaseModel): class ProviderAuthMethod (line 1454) | class ProviderAuthMethod(BaseModel): class ProviderAuthAuthorization (line 1459) | class ProviderAuthAuthorization(BaseModel): class SymbolLocation (line 1465) | class SymbolLocation(BaseModel): class Symbol (line 1470) | class Symbol(BaseModel): class FileNodeType (line 1476) | class FileNodeType(Enum, str): class FileNode (line 1481) | class FileNode(BaseModel): class FileContentPatchHunks (line 1489) | class FileContentPatchHunks(BaseModel): class FileContentPatch (line 1497) | class FileContentPatch(BaseModel): class FileContent (line 1506) | class FileContent(BaseModel): class FileStatus (line 1515) | class FileStatus(Enum, str): class File (line 1521) | class File(BaseModel): class AgentMode (line 1528) | class AgentMode(Enum, str): class AgentModel (line 1534) | class AgentModel(BaseModel): class Agent (line 1539) | class Agent(BaseModel): class McpStatusConnected (line 1555) | class McpStatusConnected(BaseModel): class McpStatusDisabled (line 1559) | class McpStatusDisabled(BaseModel): class McpStatusFailed (line 1563) | class McpStatusFailed(BaseModel): class McpStatusNeedsAuth (line 1568) | class McpStatusNeedsAuth(BaseModel): class McpStatusNeedsClientRegistration (line 1572) | class McpStatusNeedsClientRegistration(BaseModel): class LspStatus (line 1580) | class LspStatus(BaseModel): class FormatterStatus (line 1587) | class FormatterStatus(BaseModel): class OAuth (line 1593) | class OAuth(BaseModel): class ApiAuth (line 1601) | class ApiAuth(BaseModel): class WellKnownAuth (line 1606) | class WellKnownAuth(BaseModel): FILE: packages/openapi-python-tests/sdks/__snapshots__/opencode/default/client/client_gen.py function build_client_params (line 15) | def build_client_params(fields: list[dict[str, Any]], **kwargs) -> dict[... class BaseClient (line 73) | class BaseClient: method __init__ (line 76) | def __init__(self, client: Optional[httpx.Client] = None, base_url: Op... method client (line 83) | def client(self) -> httpx.Client: method request (line 87) | def request(self, method: str, url: str, **kwargs) -> httpx.Response: method get (line 91) | def get(self, url: str, **kwargs) -> httpx.Response: method post (line 95) | def post(self, url: str, **kwargs) -> httpx.Response: method put (line 99) | def put(self, url: str, **kwargs) -> httpx.Response: method patch (line 103) | def patch(self, url: str, **kwargs) -> httpx.Response: method delete (line 107) | def delete(self, url: str, **kwargs) -> httpx.Response: method close (line 111) | def close(self): method __enter__ (line 115) | def __enter__(self): method __exit__ (line 118) | def __exit__(self, *args): class Client (line 122) | class Client(BaseClient): function create_client (line 128) | def create_client(base_url: Optional[str] = None, **kwargs) -> Client: FILE: packages/openapi-python-tests/sdks/__snapshots__/opencode/default/pydantic_gen.py class EventInstallationUpdatedProperties (line 8) | class EventInstallationUpdatedProperties(BaseModel): class EventInstallationUpdated (line 12) | class EventInstallationUpdated(BaseModel): class EventInstallationUpdateAvailableProperties (line 17) | class EventInstallationUpdateAvailableProperties(BaseModel): class EventInstallationUpdateAvailable (line 21) | class EventInstallationUpdateAvailable(BaseModel): class ProjectIcon (line 26) | class ProjectIcon(BaseModel): class ProjectTime (line 31) | class ProjectTime(BaseModel): class Project (line 37) | class Project(BaseModel): class EventProjectUpdated (line 46) | class EventProjectUpdated(BaseModel): class EventServerInstanceDisposedProperties (line 51) | class EventServerInstanceDisposedProperties(BaseModel): class EventServerInstanceDisposed (line 55) | class EventServerInstanceDisposed(BaseModel): class EventLspClientDiagnosticsProperties (line 60) | class EventLspClientDiagnosticsProperties(BaseModel): class EventLspClientDiagnostics (line 65) | class EventLspClientDiagnostics(BaseModel): class EventLspUpdated (line 70) | class EventLspUpdated(BaseModel): class FileDiff (line 75) | class FileDiff(BaseModel): class UserMessageTime (line 83) | class UserMessageTime(BaseModel): class UserMessageSummary (line 87) | class UserMessageSummary(BaseModel): class UserMessageModel (line 93) | class UserMessageModel(BaseModel): class UserMessage (line 98) | class UserMessage(BaseModel): class ProviderAuthErrorData (line 111) | class ProviderAuthErrorData(BaseModel): class ProviderAuthError (line 116) | class ProviderAuthError(BaseModel): class UnknownErrorData (line 121) | class UnknownErrorData(BaseModel): class UnknownError (line 125) | class UnknownError(BaseModel): class MessageOutputLengthError (line 130) | class MessageOutputLengthError(BaseModel): class MessageAbortedErrorData (line 135) | class MessageAbortedErrorData(BaseModel): class MessageAbortedError (line 139) | class MessageAbortedError(BaseModel): class ApiErrorData (line 144) | class ApiErrorData(BaseModel): class ApiError (line 153) | class ApiError(BaseModel): class AssistantMessageTime (line 158) | class AssistantMessageTime(BaseModel): class AssistantMessagePath (line 163) | class AssistantMessagePath(BaseModel): class AssistantMessageTokensCache (line 168) | class AssistantMessageTokensCache(BaseModel): class AssistantMessageTokens (line 173) | class AssistantMessageTokens(BaseModel): class AssistantMessage (line 180) | class AssistantMessage(BaseModel): class EventMessageUpdatedProperties (line 201) | class EventMessageUpdatedProperties(BaseModel): class EventMessageUpdated (line 205) | class EventMessageUpdated(BaseModel): class EventMessageRemovedProperties (line 210) | class EventMessageRemovedProperties(BaseModel): class EventMessageRemoved (line 215) | class EventMessageRemoved(BaseModel): class TextPartTime (line 220) | class TextPartTime(BaseModel): class TextPart (line 225) | class TextPart(BaseModel): class ReasoningPartTime (line 237) | class ReasoningPartTime(BaseModel): class ReasoningPart (line 242) | class ReasoningPart(BaseModel): class FilePartSourceText (line 252) | class FilePartSourceText(BaseModel): class FileSource (line 258) | class FileSource(BaseModel): class RangeStart (line 264) | class RangeStart(BaseModel): class RangeEnd (line 269) | class RangeEnd(BaseModel): class Range (line 274) | class Range(BaseModel): class SymbolSource (line 279) | class SymbolSource(BaseModel): class FilePart (line 291) | class FilePart(BaseModel): class ToolStatePending (line 302) | class ToolStatePending(BaseModel): class ToolStateRunningTime (line 308) | class ToolStateRunningTime(BaseModel): class ToolStateRunning (line 312) | class ToolStateRunning(BaseModel): class ToolStateCompletedTime (line 320) | class ToolStateCompletedTime(BaseModel): class ToolStateCompleted (line 326) | class ToolStateCompleted(BaseModel): class ToolStateErrorTime (line 336) | class ToolStateErrorTime(BaseModel): class ToolStateError (line 341) | class ToolStateError(BaseModel): class ToolPart (line 352) | class ToolPart(BaseModel): class StepStartPart (line 363) | class StepStartPart(BaseModel): class StepFinishPartTokensCache (line 371) | class StepFinishPartTokensCache(BaseModel): class StepFinishPartTokens (line 376) | class StepFinishPartTokens(BaseModel): class StepFinishPart (line 383) | class StepFinishPart(BaseModel): class SnapshotPart (line 394) | class SnapshotPart(BaseModel): class PatchPart (line 402) | class PatchPart(BaseModel): class AgentPartSource (line 411) | class AgentPartSource(BaseModel): class AgentPart (line 417) | class AgentPart(BaseModel): class RetryPartTime (line 426) | class RetryPartTime(BaseModel): class RetryPart (line 430) | class RetryPart(BaseModel): class CompactionPart (line 440) | class CompactionPart(BaseModel): class Part (line 448) | class Part(BaseModel): class EventMessagePartUpdatedProperties (line 462) | class EventMessagePartUpdatedProperties(BaseModel): class EventMessagePartUpdated (line 467) | class EventMessagePartUpdated(BaseModel): class EventMessagePartRemovedProperties (line 472) | class EventMessagePartRemovedProperties(BaseModel): class EventMessagePartRemoved (line 478) | class EventMessagePartRemoved(BaseModel): class PermissionRequestTool (line 483) | class PermissionRequestTool(BaseModel): class PermissionRequest (line 488) | class PermissionRequest(BaseModel): class EventPermissionAsked (line 498) | class EventPermissionAsked(BaseModel): class EventPermissionRepliedPropertiesReply (line 503) | class EventPermissionRepliedPropertiesReply(Enum, str): class EventPermissionRepliedProperties (line 509) | class EventPermissionRepliedProperties(BaseModel): class EventPermissionReplied (line 515) | class EventPermissionReplied(BaseModel): class SessionStatus (line 520) | class SessionStatus(BaseModel): class SessionStatus_2 (line 524) | class SessionStatus_2(BaseModel): class SessionStatus_3 (line 531) | class SessionStatus_3(BaseModel): class EventSessionStatusProperties (line 538) | class EventSessionStatusProperties(BaseModel): class EventSessionStatus (line 543) | class EventSessionStatus(BaseModel): class EventSessionIdleProperties (line 548) | class EventSessionIdleProperties(BaseModel): class EventSessionIdle (line 552) | class EventSessionIdle(BaseModel): class EventSessionCompactedProperties (line 557) | class EventSessionCompactedProperties(BaseModel): class EventSessionCompacted (line 561) | class EventSessionCompacted(BaseModel): class EventFileEditedProperties (line 566) | class EventFileEditedProperties(BaseModel): class EventFileEdited (line 570) | class EventFileEdited(BaseModel): class Todo (line 575) | class Todo(BaseModel): class EventTodoUpdatedProperties (line 582) | class EventTodoUpdatedProperties(BaseModel): class EventTodoUpdated (line 587) | class EventTodoUpdated(BaseModel): class EventTuiPromptAppendProperties (line 592) | class EventTuiPromptAppendProperties(BaseModel): class EventTuiPromptAppend (line 596) | class EventTuiPromptAppend(BaseModel): class EventTuiCommandExecutePropertiesCommand (line 601) | class EventTuiCommandExecutePropertiesCommand(Enum, str): class EventTuiCommandExecuteProperties (line 618) | class EventTuiCommandExecuteProperties(BaseModel): class EventTuiCommandExecute (line 622) | class EventTuiCommandExecute(BaseModel): class EventTuiToastShowPropertiesVariant (line 627) | class EventTuiToastShowPropertiesVariant(Enum, str): class EventTuiToastShowProperties (line 634) | class EventTuiToastShowProperties(BaseModel): class EventTuiToastShow (line 641) | class EventTuiToastShow(BaseModel): class EventMcpToolsChangedProperties (line 646) | class EventMcpToolsChangedProperties(BaseModel): class EventMcpToolsChanged (line 650) | class EventMcpToolsChanged(BaseModel): class EventCommandExecutedProperties (line 655) | class EventCommandExecutedProperties(BaseModel): class EventCommandExecuted (line 662) | class EventCommandExecuted(BaseModel): class PermissionAction (line 667) | class PermissionAction(Enum, str): class PermissionRule (line 673) | class PermissionRule(BaseModel): class SessionSummary (line 682) | class SessionSummary(BaseModel): class SessionShare (line 689) | class SessionShare(BaseModel): class SessionTime (line 693) | class SessionTime(BaseModel): class SessionRevert (line 700) | class SessionRevert(BaseModel): class Session (line 707) | class Session(BaseModel): class EventSessionCreatedProperties (line 721) | class EventSessionCreatedProperties(BaseModel): class EventSessionCreated (line 725) | class EventSessionCreated(BaseModel): class EventSessionUpdatedProperties (line 730) | class EventSessionUpdatedProperties(BaseModel): class EventSessionUpdated (line 734) | class EventSessionUpdated(BaseModel): class EventSessionDeletedProperties (line 739) | class EventSessionDeletedProperties(BaseModel): class EventSessionDeleted (line 743) | class EventSessionDeleted(BaseModel): class EventSessionDiffProperties (line 748) | class EventSessionDiffProperties(BaseModel): class EventSessionDiff (line 753) | class EventSessionDiff(BaseModel): class EventSessionErrorProperties (line 758) | class EventSessionErrorProperties(BaseModel): class EventSessionError (line 763) | class EventSessionError(BaseModel): class EventFileWatcherUpdatedProperties (line 768) | class EventFileWatcherUpdatedProperties(BaseModel): class EventFileWatcherUpdated (line 773) | class EventFileWatcherUpdated(BaseModel): class EventVcsBranchUpdatedProperties (line 778) | class EventVcsBranchUpdatedProperties(BaseModel): class EventVcsBranchUpdated (line 782) | class EventVcsBranchUpdated(BaseModel): class PtyStatus (line 787) | class PtyStatus(Enum, str): class Pty (line 792) | class Pty(BaseModel): class EventPtyCreatedProperties (line 802) | class EventPtyCreatedProperties(BaseModel): class EventPtyCreated (line 806) | class EventPtyCreated(BaseModel): class EventPtyUpdatedProperties (line 811) | class EventPtyUpdatedProperties(BaseModel): class EventPtyUpdated (line 815) | class EventPtyUpdated(BaseModel): class EventPtyExitedProperties (line 820) | class EventPtyExitedProperties(BaseModel): class EventPtyExited (line 825) | class EventPtyExited(BaseModel): class EventPtyDeletedProperties (line 830) | class EventPtyDeletedProperties(BaseModel): class EventPtyDeleted (line 834) | class EventPtyDeleted(BaseModel): class EventServerConnected (line 839) | class EventServerConnected(BaseModel): class EventGlobalDisposed (line 844) | class EventGlobalDisposed(BaseModel): class GlobalEvent (line 852) | class GlobalEvent(BaseModel): class BadRequestError (line 857) | class BadRequestError(BaseModel): class NotFoundErrorData (line 863) | class NotFoundErrorData(BaseModel): class NotFoundError (line 867) | class NotFoundError(BaseModel): class KeybindsConfig (line 872) | class KeybindsConfig(BaseModel): class LogLevel (line 962) | class LogLevel(Enum, str): class ServerConfig (line 969) | class ServerConfig(BaseModel): class PermissionActionConfig (line 976) | class PermissionActionConfig(Enum, str): class PermissionConfig (line 988) | class PermissionConfig(BaseModel): class ProviderConfigModelsValueInterleavedField (line 1012) | class ProviderConfigModelsValueInterleavedField(Enum, str): class ProviderConfigModelsValueInterleaved (line 1017) | class ProviderConfigModelsValueInterleaved(BaseModel): class ProviderConfigModelsValueCostContextOver200k (line 1021) | class ProviderConfigModelsValueCostContextOver200k(BaseModel): class ProviderConfigModelsValueCost (line 1028) | class ProviderConfigModelsValueCost(BaseModel): class ProviderConfigModelsValueLimit (line 1036) | class ProviderConfigModelsValueLimit(BaseModel): class ProviderConfigModelsValueModalitiesInput (line 1041) | class ProviderConfigModelsValueModalitiesInput(Enum, str): class ProviderConfigModelsValueModalitiesOutput (line 1049) | class ProviderConfigModelsValueModalitiesOutput(Enum, str): class ProviderConfigModelsValueModalities (line 1057) | class ProviderConfigModelsValueModalities(BaseModel): class ProviderConfigModelsValueStatus (line 1062) | class ProviderConfigModelsValueStatus(Enum, str): class ProviderConfigModelsValueProvider (line 1068) | class ProviderConfigModelsValueProvider(BaseModel): class ProviderConfigModelsValue (line 1075) | class ProviderConfigModelsValue(BaseModel): class ProviderConfig (line 1099) | class ProviderConfig(BaseModel): class McpLocalConfig (line 1111) | class McpLocalConfig(BaseModel): class McpOAuthConfig (line 1119) | class McpOAuthConfig(BaseModel): class McpRemoteConfig (line 1125) | class McpRemoteConfig(BaseModel): class LayoutConfig (line 1134) | class LayoutConfig(Enum, str): class ConfigTuiScrollAcceleration (line 1139) | class ConfigTuiScrollAcceleration(BaseModel): class ConfigTuiDiffStyle (line 1143) | class ConfigTuiDiffStyle(Enum, str): class ConfigTui (line 1148) | class ConfigTui(BaseModel): class ConfigCommandValue (line 1154) | class ConfigCommandValue(BaseModel): class ConfigWatcher (line 1162) | class ConfigWatcher(BaseModel): class ConfigShare (line 1166) | class ConfigShare(Enum, str): class ConfigMode (line 1172) | class ConfigMode(BaseModel): class ConfigAgent (line 1177) | class ConfigAgent(BaseModel): class ConfigFormatterValue (line 1187) | class ConfigFormatterValue(BaseModel): class ConfigEnterprise (line 1194) | class ConfigEnterprise(BaseModel): class ConfigCompaction (line 1198) | class ConfigCompaction(BaseModel): class ConfigExperimentalHookFileEditedValue (line 1203) | class ConfigExperimentalHookFileEditedValue(BaseModel): class ConfigExperimentalHookSessionCompleted (line 1208) | class ConfigExperimentalHookSessionCompleted(BaseModel): class ConfigExperimentalHook (line 1213) | class ConfigExperimentalHook(BaseModel): class ConfigExperimental (line 1218) | class ConfigExperimental(BaseModel): class Config (line 1229) | class Config(BaseModel): class ToolListItem (line 1267) | class ToolListItem(BaseModel): class Path (line 1276) | class Path(BaseModel): class VcsInfo (line 1284) | class VcsInfo(BaseModel): class TextPartInputTime (line 1288) | class TextPartInputTime(BaseModel): class TextPartInput (line 1293) | class TextPartInput(BaseModel): class FilePartInput (line 1303) | class FilePartInput(BaseModel): class AgentPartInputSource (line 1312) | class AgentPartInputSource(BaseModel): class AgentPartInput (line 1318) | class AgentPartInput(BaseModel): class SubtaskPartInput (line 1325) | class SubtaskPartInput(BaseModel): class Command (line 1334) | class Command(BaseModel): class ModelApi (line 1345) | class ModelApi(BaseModel): class ModelCapabilitiesInput (line 1351) | class ModelCapabilitiesInput(BaseModel): class ModelCapabilitiesOutput (line 1359) | class ModelCapabilitiesOutput(BaseModel): class ModelCapabilitiesInterleavedField (line 1367) | class ModelCapabilitiesInterleavedField(Enum, str): class ModelCapabilitiesInterleaved (line 1372) | class ModelCapabilitiesInterleaved(BaseModel): class ModelCapabilities (line 1376) | class ModelCapabilities(BaseModel): class ModelCostCache (line 1386) | class ModelCostCache(BaseModel): class ModelCostExperimentalOver200kCache (line 1391) | class ModelCostExperimentalOver200kCache(BaseModel): class ModelCostExperimentalOver200k (line 1396) | class ModelCostExperimentalOver200k(BaseModel): class ModelCost (line 1402) | class ModelCost(BaseModel): class ModelLimit (line 1409) | class ModelLimit(BaseModel): class ModelStatus (line 1414) | class ModelStatus(Enum, str): class Model (line 1421) | class Model(BaseModel): class ProviderSource (line 1437) | class ProviderSource(Enum, str): class Provider (line 1444) | class Provider(BaseModel): class ProviderAuthMethod (line 1454) | class ProviderAuthMethod(BaseModel): class ProviderAuthAuthorization (line 1459) | class ProviderAuthAuthorization(BaseModel): class SymbolLocation (line 1465) | class SymbolLocation(BaseModel): class Symbol (line 1470) | class Symbol(BaseModel): class FileNodeType (line 1476) | class FileNodeType(Enum, str): class FileNode (line 1481) | class FileNode(BaseModel): class FileContentPatchHunks (line 1489) | class FileContentPatchHunks(BaseModel): class FileContentPatch (line 1497) | class FileContentPatch(BaseModel): class FileContent (line 1506) | class FileContent(BaseModel): class FileStatus (line 1515) | class FileStatus(Enum, str): class File (line 1521) | class File(BaseModel): class AgentMode (line 1528) | class AgentMode(Enum, str): class AgentModel (line 1534) | class AgentModel(BaseModel): class Agent (line 1539) | class Agent(BaseModel): class McpStatusConnected (line 1555) | class McpStatusConnected(BaseModel): class McpStatusDisabled (line 1559) | class McpStatusDisabled(BaseModel): class McpStatusFailed (line 1563) | class McpStatusFailed(BaseModel): class McpStatusNeedsAuth (line 1568) | class McpStatusNeedsAuth(BaseModel): class McpStatusNeedsClientRegistration (line 1572) | class McpStatusNeedsClientRegistration(BaseModel): class LspStatus (line 1580) | class LspStatus(BaseModel): class FormatterStatus (line 1587) | class FormatterStatus(BaseModel): class OAuth (line 1593) | class OAuth(BaseModel): class ApiAuth (line 1601) | class ApiAuth(BaseModel): class WellKnownAuth (line 1606) | class WellKnownAuth(BaseModel): FILE: packages/openapi-python-tests/sdks/__snapshots__/opencode/default/sdk_gen.py class Global (line 8) | class Global(Client): method health (line 9) | def health(self): method event (line 18) | def event(self): method dispose (line 27) | def dispose(self): class Project (line 37) | class Project(Client): method list (line 38) | def list(self): method current (line 47) | def current(self): method update (line 56) | def update(self): class Pty (line 66) | class Pty(Client): method list (line 67) | def list(self): method create (line 76) | def create(self): method remove (line 85) | def remove(self): method get (line 94) | def get(self): method update (line 103) | def update(self): method connect (line 112) | def connect(self): class Config (line 122) | class Config(Client): method get (line 123) | def get(self): method update (line 132) | def update(self): method providers (line 141) | def providers(self): class Tool (line 151) | class Tool(Client): method ids (line 152) | def ids(self): method list (line 161) | def list(self): class Instance (line 171) | class Instance(Client): method dispose (line 172) | def dispose(self): class Path (line 182) | class Path(Client): method get (line 183) | def get(self): class Vcs (line 193) | class Vcs(Client): method get (line 194) | def get(self): class Session (line 204) | class Session(Client): method list (line 205) | def list(self): method create (line 214) | def create(self): method status (line 223) | def status(self): method delete (line 232) | def delete(self): method get (line 241) | def get(self): method update (line 250) | def update(self): method children (line 259) | def children(self): method todo (line 268) | def todo(self): method init (line 277) | def init(self): method fork (line 286) | def fork(self): method abort (line 295) | def abort(self): method unshare (line 304) | def unshare(self): method share (line 313) | def share(self): method diff (line 322) | def diff(self): method summarize (line 331) | def summarize(self): method messages (line 340) | def messages(self): method prompt (line 349) | def prompt(self): method message (line 358) | def message(self): method prompt_async (line 367) | def prompt_async(self): method command (line 376) | def command(self): method shell (line 385) | def shell(self): method revert (line 394) | def revert(self): method unrevert (line 403) | def unrevert(self): class Part (line 413) | class Part(Client): method delete (line 414) | def delete(self): method update (line 419) | def update(self): class Permission (line 425) | class Permission(Client): method respond (line 426) | def respond(self): method reply (line 437) | def reply(self): method list (line 446) | def list(self): class Command (line 456) | class Command(Client): method list (line 457) | def list(self): class Oauth (line 467) | class Oauth(Client): method authorize (line 468) | def authorize(self): method callback (line 477) | def callback(self): class Provider (line 487) | class Provider(Client): method list (line 488) | def list(self): method auth (line 497) | def auth(self): method oauth (line 507) | def oauth(self) -> Oauth: class Find (line 511) | class Find(Client): method text (line 512) | def text(self): method files (line 521) | def files(self): method symbols (line 530) | def symbols(self): class File (line 540) | class File(Client): method list (line 541) | def list(self): method read (line 550) | def read(self): method status (line 559) | def status(self): class App (line 569) | class App(Client): method log (line 570) | def log(self): method agents (line 579) | def agents(self): class Auth (line 589) | class Auth(Client): method remove (line 590) | def remove(self): method start (line 599) | def start(self): method callback (line 608) | def callback(self): method authenticate (line 617) | def authenticate(self): class Mcp (line 627) | class Mcp(Client): method status (line 628) | def status(self): method add (line 637) | def add(self): method connect (line 646) | def connect(self): method disconnect (line 651) | def disconnect(self): method auth (line 657) | def auth(self) -> Auth: class Lsp (line 661) | class Lsp(Client): method status (line 662) | def status(self): class Formatter (line 672) | class Formatter(Client): method status (line 673) | def status(self): class Control (line 683) | class Control(Client): method next (line 684) | def next(self): method response (line 693) | def response(self): class Tui (line 703) | class Tui(Client): method append_prompt (line 704) | def append_prompt(self): method open_help (line 713) | def open_help(self): method open_sessions (line 722) | def open_sessions(self): method open_themes (line 731) | def open_themes(self): method open_models (line 740) | def open_models(self): method submit_prompt (line 749) | def submit_prompt(self): method clear_prompt (line 758) | def clear_prompt(self): method execute_command (line 767) | def execute_command(self): method show_toast (line 776) | def show_toast(self): method publish (line 785) | def publish(self): method control (line 795) | def control(self) -> Control: class Auth_2 (line 799) | class Auth_2(Client): method set (line 800) | def set(self): class Event (line 810) | class Event(Client): method subscribe (line 811) | def subscribe(self): class Sdk (line 821) | class Sdk(Client): method global_ (line 823) | def global_(self) -> Global: method project (line 827) | def project(self) -> Project: method pty (line 831) | def pty(self) -> Pty: method config (line 835) | def config(self) -> Config: method tool (line 839) | def tool(self) -> Tool: method instance (line 843) | def instance(self) -> Instance: method path (line 847) | def path(self) -> Path: method vcs (line 851) | def vcs(self) -> Vcs: method session (line 855) | def session(self) -> Session: method part (line 859) | def part(self) -> Part: method permission (line 863) | def permission(self) -> Permission: method command (line 867) | def command(self) -> Command: method provider (line 871) | def provider(self) -> Provider: method find (line 875) | def find(self) -> Find: method file (line 879) | def file(self) -> File: method app (line 883) | def app(self) -> App: method mcp (line 887) | def mcp(self) -> Mcp: method lsp (line 891) | def lsp(self) -> Lsp: method formatter (line 895) | def formatter(self) -> Formatter: method tui (line 899) | def tui(self) -> Tui: method auth (line 903) | def auth(self) -> Auth_2: method event (line 907) | def event(self) -> Event: FILE: packages/openapi-python/src/cli/index.ts function runCli (line 39) | async function runCli(): Promise { FILE: packages/openapi-python/src/cli/schema.ts type CliOptions (line 6) | interface CliOptions { FILE: packages/openapi-python/src/config/expand.ts type Job (line 6) | interface Job { function expandToJobs (line 11) | function expandToJobs(configs: ReadonlyArray): ReadonlyArray... FILE: packages/openapi-python/src/config/init.ts type Configs (line 11) | type Configs = { function resolveJobs (line 19) | async function resolveJobs({ FILE: packages/openapi-python/src/config/output/config.ts function getOutput (line 8) | function getOutput(userConfig: { output: MaybeArray... function normalizePostProcess (line 60) | function normalizePostProcess(input: UserOutput['postProcess']): Readonl... FILE: packages/openapi-python/src/config/output/postprocess.ts type PostProcessorPreset (line 36) | type PostProcessorPreset = keyof typeof postProcessors; FILE: packages/openapi-python/src/config/output/types.ts type UserOutput (line 5) | type UserOutput = BaseUserOutput<'.py'> & { type Output (line 26) | type Output = BaseOutput<'.py'> & { FILE: packages/openapi-python/src/config/plugins.ts function getPluginsConfig (line 12) | function getPluginsConfig({ function isPluginClient (line 111) | function isPluginClient(plugin: Required['plugins'][number])... function getPlugins (line 123) | function getPlugins({ FILE: packages/openapi-python/src/config/resolve.ts type ResolvedJob (line 12) | type ResolvedJob = { function resolveConfig (line 18) | function resolveConfig( FILE: packages/openapi-python/src/config/types.ts type UserConfig (line 11) | type UserConfig = BaseUserConfig & { type Config (line 29) | type Config = BaseConfig & { FILE: packages/openapi-python/src/config/utils.ts function getTypedConfig (line 5) | function getTypedConfig( FILE: packages/openapi-python/src/config/validate.ts type ValidationResult (line 6) | type ValidationResult = { function validateJobs (line 11) | function validateJobs(jobs: ReadonlyArray): ReadonlyArray { FILE: packages/openapi-python/src/index.ts type ProjectRenderMeta (line 8) | interface ProjectRenderMeta { type SymbolMeta (line 19) | interface SymbolMeta { type PluginConfigMap (line 51) | interface PluginConfigMap { function defineConfig (line 80) | async function defineConfig>( type Types (line 111) | type Types = HeyApiClientHttpxPlugin; type Types (line 115) | type Types = HeyApiSdkPlugin; type Resolvers (line 119) | type Resolvers = Required['~resolvers']; type Types (line 120) | type Types = PydanticPlugin; FILE: packages/openapi-python/src/plugins/@hey-api/client-core/types.ts type PluginHandler (line 6) | interface PluginHandler { type Config (line 14) | type Config = Plugin.Hooks & FILE: packages/openapi-python/src/plugins/@hey-api/client-core/utils.ts function getClientPlugin (line 4) | function getClientPlugin( FILE: packages/openapi-python/src/plugins/@hey-api/client-httpx/bundle/client.py function build_client_params (line 13) | def build_client_params(fields: list[dict[str, Any]], **kwargs) -> dict[... class BaseClient (line 71) | class BaseClient: method __init__ (line 74) | def __init__(self, client: Optional[httpx.Client] = None, base_url: Op... method client (line 81) | def client(self) -> httpx.Client: method request (line 85) | def request(self, method: str, url: str, **kwargs) -> httpx.Response: method get (line 89) | def get(self, url: str, **kwargs) -> httpx.Response: method post (line 93) | def post(self, url: str, **kwargs) -> httpx.Response: method put (line 97) | def put(self, url: str, **kwargs) -> httpx.Response: method patch (line 101) | def patch(self, url: str, **kwargs) -> httpx.Response: method delete (line 105) | def delete(self, url: str, **kwargs) -> httpx.Response: method close (line 109) | def close(self): method __enter__ (line 113) | def __enter__(self): method __exit__ (line 116) | def __exit__(self, *args): class Client (line 120) | class Client(BaseClient): function create_client (line 126) | def create_client(base_url: Optional[str] = None, **kwargs) -> Client: FILE: packages/openapi-python/src/plugins/@hey-api/client-httpx/config.ts method handler (line 9) | handler() { FILE: packages/openapi-python/src/plugins/@hey-api/client-httpx/types.ts type UserConfig (line 3) | type UserConfig = Plugin.Name<'@hey-api/client-httpx'> & { type Config (line 20) | type Config = Plugin.Name<'@hey-api/client-httpx'> & { type HeyApiClientHttpxPlugin (line 24) | type HeyApiClientHttpxPlugin = DefinePlugin; FILE: packages/openapi-python/src/plugins/@hey-api/sdk/examples/config.ts type Config (line 6) | type Config = Omit; function resolveExamples (line 8) | function resolveExamples(config: Config, context: PluginContext): Exampl... FILE: packages/openapi-python/src/plugins/@hey-api/sdk/examples/types.ts type UserExamplesConfig (line 6) | type UserExamplesConfig = Omit & { type ExamplesConfig (line 38) | type ExamplesConfig = Omit & FILE: packages/openapi-python/src/plugins/@hey-api/sdk/operations/config.ts type Config (line 6) | type Config = Omit; function resolveOperations (line 8) | function resolveOperations(config: Config, context: PluginContext): Oper... function normalizeConfig (line 12) | function normalizeConfig( FILE: packages/openapi-python/src/plugins/@hey-api/sdk/operations/resolve.ts function resolvePath (line 6) | function resolvePath(plugin: HeyApiSdkPlugin['Instance']): OperationPath... function resolveStrategy (line 21) | function resolveStrategy(plugin: HeyApiSdkPlugin['Instance']): Operation... FILE: packages/openapi-python/src/plugins/@hey-api/sdk/operations/types.ts type UserOperationsConfig (line 8) | interface UserOperationsConfig { type OperationsConfig (line 100) | interface OperationsConfig { FILE: packages/openapi-python/src/plugins/@hey-api/sdk/shared/operation.ts type OperationParameters (line 8) | type OperationParameters = { constant PYTHON_BUILTIN_TYPES (line 18) | const PYTHON_BUILTIN_TYPES: Record = { function schemaToPythonType (line 27) | function schemaToPythonType( function operationParameters (line 66) | function operationParameters({ FILE: packages/openapi-python/src/plugins/@hey-api/sdk/shared/signature.ts type Location (line 4) | type Location = keyof IR.ParametersObject | 'body'; type SignatureParameter (line 6) | type SignatureParameter = { type SignatureParameters (line 14) | type SignatureParameters = Record; type Field (line 16) | type Field = { type Signature (line 22) | type Signature = { function getSignatureParameters (line 28) | function getSignatureParameters({ FILE: packages/openapi-python/src/plugins/@hey-api/sdk/types.ts type UserConfig (line 8) | type UserConfig = Plugin.Name<'@hey-api/python-sdk'> & type Config (line 129) | type Config = Plugin.Name<'@hey-api/python-sdk'> & type HeyApiSdkPlugin (line 214) | type HeyApiSdkPlugin = DefinePlugin; FILE: packages/openapi-python/src/plugins/@hey-api/sdk/v1/node.ts type OperationItem (line 16) | interface OperationItem { function attachComment (line 24) | function attachComment>(args: { function createShellMeta (line 35) | function createShellMeta(node: StructureNode): SymbolMeta { function createFnSymbol (line 44) | function createFnSymbol( function childToNode (line 62) | function childToNode( function createShell (line 87) | function createShell(plugin: HeyApiSdkPlugin['Instance']): StructureShell { function implementFn (line 113) | function implementFn>(args: { function toNode (line 163) | function toNode( FILE: packages/openapi-python/src/plugins/pydantic/resolvers.ts type PydanticResolvers (line 7) | type PydanticResolvers = Plugin.Resolvers<{ type BaseContext (line 124) | interface BaseContext extends DollarPyDsl { type ArrayResolverContext (line 129) | interface ArrayResolverContext extends BaseContext { type BooleanResolverContext (line 145) | interface BooleanResolverContext extends BaseContext { type EnumResolverContext (line 156) | interface EnumResolverContext extends BaseContext { type IntersectionResolverContext (line 170) | interface IntersectionResolverContext extends BaseContext { type NeverResolverContext (line 183) | interface NeverResolverContext extends BaseContext { type NullResolverContext (line 193) | interface NullResolverContext extends BaseContext { type NumberResolverContext (line 203) | interface NumberResolverContext extends BaseContext { type ObjectResolverContext (line 214) | interface ObjectResolverContext extends BaseContext { type StringResolverContext (line 230) | interface StringResolverContext extends BaseContext { type TupleResolverContext (line 241) | interface TupleResolverContext extends BaseContext { type UndefinedResolverContext (line 256) | interface UndefinedResolverContext extends BaseContext { type UnionResolverContext (line 266) | interface UnionResolverContext extends BaseContext { type UnknownResolverContext (line 280) | interface UnknownResolverContext extends BaseContext { type VoidResolverContext (line 290) | interface VoidResolverContext extends BaseContext { FILE: packages/openapi-python/src/plugins/pydantic/shared/export.ts function exportAst (line 11) | function exportAst({ function exportClass (line 49) | function exportClass({ function exportEnumClass (line 76) | function exportEnumClass({ function createFieldStatement (line 105) | function createFieldStatement( function exportTypeAlias (line 134) | function exportTypeAlias({ FILE: packages/openapi-python/src/plugins/pydantic/shared/field.ts type FieldArg (line 5) | type FieldArg = ReturnType & type Config (line 188) | type Config = Plugin.Name<'pydantic'> & type PydanticPlugin (line 209) | type PydanticPlugin = DefinePlugin; FILE: packages/openapi-python/src/plugins/pydantic/v2/constants.ts type FieldConstraints (line 5) | interface FieldConstraints { FILE: packages/openapi-python/src/plugins/pydantic/v2/processor.ts function createProcessor (line 11) | function createProcessor(plugin: PydanticPlugin['Instance']): ProcessorR... FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/array.ts function baseNode (line 10) | function baseNode(ctx: ArrayResolverContext): PydanticType { function minLengthNode (line 40) | function minLengthNode(ctx: ArrayResolverContext): PydanticType | undefi... function maxLengthNode (line 48) | function maxLengthNode(ctx: ArrayResolverContext): PydanticType | undefi... function arrayResolver (line 56) | function arrayResolver(ctx: ArrayResolverContext): PydanticType { type ArrayToTypeResult (line 77) | interface ArrayToTypeResult extends PydanticType { function arrayToType (line 81) | function arrayToType(ctx: { FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/boolean.ts function constNode (line 8) | function constNode(ctx: BooleanResolverContext): PydanticType | undefined { function baseNode (line 20) | function baseNode(_ctx: BooleanResolverContext): PydanticType { function booleanResolver (line 26) | function booleanResolver(ctx: BooleanResolverContext): PydanticType { function booleanToType (line 33) | function booleanToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/enum.ts type EnumToTypeResult (line 9) | interface EnumToTypeResult extends PydanticType { function toEnumMemberName (line 15) | function toEnumMemberName(value: string | number): string { function itemsNode (line 24) | function itemsNode(ctx: EnumResolverContext) { function baseNode (line 49) | function baseNode(ctx: EnumResolverContext): PydanticType { function enumResolver (line 82) | function enumResolver(ctx: EnumResolverContext): PydanticType { function enumToType (line 86) | function enumToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/intersection.ts function baseNode (line 14) | function baseNode(ctx: IntersectionResolverContext): PydanticType { function intersectionResolver (line 77) | function intersectionResolver(ctx: IntersectionResolverContext): Pydanti... type IntersectionToTypeResult (line 81) | interface IntersectionToTypeResult extends PydanticType { function intersectionToType (line 87) | function intersectionToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/never.ts function baseNode (line 8) | function baseNode(ctx: NeverResolverContext): PydanticType { function neverResolver (line 15) | function neverResolver(ctx: NeverResolverContext): PydanticType { function neverToType (line 19) | function neverToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/null.ts function baseNode (line 9) | function baseNode(_ctx: NullResolverContext): PydanticType { function nullResolver (line 15) | function nullResolver(ctx: NullResolverContext): PydanticType { function nullToType (line 19) | function nullToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/number.ts function constNode (line 9) | function constNode(ctx: NumberResolverContext): PydanticType | undefined { function baseNode (line 20) | function baseNode(ctx: NumberResolverContext): PydanticType { function numberResolver (line 51) | function numberResolver(ctx: NumberResolverContext): PydanticType { function numberToType (line 58) | function numberToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/object.ts type ObjectToFieldsResult (line 8) | interface ObjectToFieldsResult extends Pick { function baseNode (line 54) | function baseNode(ctx: ObjectResolverContext): PydanticType & { fields?:... function objectResolver (line 80) | function objectResolver(ctx: ObjectResolverContext): PydanticType { function objectToFields (line 84) | function objectToFields( FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/string.ts function constNode (line 9) | function constNode(ctx: StringResolverContext): PydanticType | undefined { function baseNode (line 20) | function baseNode(ctx: StringResolverContext): PydanticType { function stringResolver (line 47) | function stringResolver(ctx: StringResolverContext): PydanticType { function stringToType (line 54) | function stringToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/tuple.ts function baseNode (line 10) | function baseNode(ctx: TupleResolverContext): PydanticType { function constNode (line 43) | function constNode(_ctx: TupleResolverContext): PydanticType | undefined { function tupleResolver (line 47) | function tupleResolver(ctx: TupleResolverContext): PydanticType { type TupleToTypeResult (line 64) | interface TupleToTypeResult extends PydanticType { function tupleToType (line 68) | function tupleToType(ctx: { FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/undefined.ts function baseNode (line 9) | function baseNode(_ctx: UndefinedResolverContext): PydanticType { function undefinedResolver (line 15) | function undefinedResolver(ctx: UndefinedResolverContext): PydanticType { function undefinedToType (line 19) | function undefinedToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/union.ts function baseNode (line 9) | function baseNode(ctx: UnionResolverContext): PydanticType { function unionResolver (line 50) | function unionResolver(ctx: UnionResolverContext): PydanticType { type UnionToTypeResult (line 54) | interface UnionToTypeResult extends PydanticType { function unionToType (line 59) | function unionToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/unknown.ts function baseNode (line 8) | function baseNode(ctx: UnknownResolverContext): PydanticType { function unknownResolver (line 15) | function unknownResolver(ctx: UnknownResolverContext): PydanticType { function unknownToType (line 19) | function unknownToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/toAst/void.ts function baseNode (line 9) | function baseNode(_ctx: VoidResolverContext): PydanticType { function voidResolver (line 15) | function voidResolver(ctx: VoidResolverContext): PydanticType { function voidToType (line 19) | function voidToType({ FILE: packages/openapi-python/src/plugins/pydantic/v2/walker.ts type VisitorConfig (line 26) | interface VisitorConfig { function createVisitor (line 31) | function createVisitor( FILE: packages/openapi-python/src/plugins/shared/utils/operation.ts function createOperationComment (line 4) | function createOperationComment( FILE: packages/openapi-python/src/plugins/types.ts type PluginClientNames (line 1) | type PluginClientNames = type PluginMockNames (line 7) | type PluginMockNames = 'factory_boy' | 'faker' | 'mimesis'; type PluginTransformerNames (line 9) | type PluginTransformerNames = never; type PluginValidatorNames (line 11) | type PluginValidatorNames = 'attrs' | 'dataclasses' | 'marshmallow' | 'p... FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/default.py class MyClass (line 1) | class MyClass: FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-decorators.py function my_decorator (line 1) | def my_decorator(func): function another_decorator (line 4) | def another_decorator(func): class MyClass (line 9) | class MyClass: FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-docstring.py class MyClass (line 1) | class MyClass: FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-extends.py class BaseClass (line 1) | class BaseClass: class MyClass (line 4) | class MyClass(BaseClass): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-method-docstring.py class MyClass (line 1) | class MyClass: method greet (line 2) | def greet(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/class/with-method.py class MyClass (line 1) | class MyClass: method foo (line 2) | def foo(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/default.py function greet (line 1) | def greet(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-annotations-defaults-return.py function greet (line 1) | def greet(name: str = "World", times: int = 1) -> None: FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-body.py function greet (line 1) | def greet(name): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-decorators.py function my_decorator (line 1) | def my_decorator(func): function another_decorator (line 4) | def another_decorator(func): function greet (line 9) | def greet(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/declarations/function/with-docstring.py function greet (line 1) | def greet(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/await/inside-function.py function fetchData (line 1) | def fetchData(): function main (line 4) | async def main(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/dict/dict.py function foo (line 1) | async def foo(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/list/list.py function foo (line 1) | async def foo(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/comprehensions/set/dict.py function foo (line 1) | async def foo(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/default.py function gen (line 1) | def gen(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/from-iterable.py function gen (line 3) | def gen(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/expressions/yield/with-value.py function gen (line 1) | def gen(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/block/function.py function main (line 1) | def main(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/return/function.py function get_message (line 1) | def get_message(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-else-finally.py function dangerous_func (line 1) | def dangerous_func(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-else.py function dangerous_func (line 1) | def dangerous_func(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except-finally.py function dangerous_func (line 1) | def dangerous_func(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-except.py function dangerous_func (line 1) | def dangerous_func(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/try/with-finally.py function dangerous_func (line 1) | def dangerous_func(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/while/while-else.py function should_continue (line 1) | def should_continue(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-alias.py class context_manager (line 1) | class context_manager: method __enter__ (line 2) | def __enter__(self): method __exit__ (line 4) | def __exit__( FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-async.py class context_manager (line 1) | class context_manager: method __enter__ (line 2) | def __enter__(self): method __exit__ (line 4) | def __exit__( function foo (line 12) | async def foo(): FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-many-items.py class context_manager (line 1) | class context_manager: method __enter__ (line 2) | def __enter__(self): method __exit__ (line 4) | def __exit__( class context_manager2 (line 12) | class context_manager2: method __enter__ (line 13) | def __enter__(self): method __exit__ (line 15) | def __exit__( class context_manager3 (line 23) | class context_manager3: method __enter__ (line 24) | def __enter__(self): method __exit__ (line 26) | def __exit__( FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with-tuple-alias.py class context_manager (line 1) | class context_manager: method __enter__ (line 2) | def __enter__(self): method __exit__ (line 4) | def __exit__( FILE: packages/openapi-python/src/py-compiler/__snapshots__/nodes/statements/with/with.py class context_manager (line 1) | class context_manager: method __enter__ (line 2) | def __enter__(self): method __exit__ (line 4) | def __exit__( FILE: packages/openapi-python/src/py-compiler/__tests__/globalTeardown.ts function teardown (line 5) | function teardown() { FILE: packages/openapi-python/src/py-compiler/__tests__/nodes/utils.ts function getCallerFile (line 7) | function getCallerFile(): string { function ensureInitFiles (line 21) | function ensureInitFiles(dir: string, rootDir: string): void { function assertPrintedMatchesSnapshot (line 37) | async function assertPrintedMatchesSnapshot( FILE: packages/openapi-python/src/py-compiler/index.ts type Node (line 69) | type Node = _PyNode; type NodeBase (line 70) | type NodeBase = _PyNodeBase; type NodeKind (line 71) | type NodeKind = PyNodeKind; type Expression (line 72) | type Expression = _PyExpression; type Statement (line 73) | type Statement = _PyStatement; type SourceFile (line 76) | type SourceFile = _PySourceFile; type Comment (line 77) | type Comment = _PyComment; type ClassDeclaration (line 80) | type ClassDeclaration = _PyClassDeclaration; type FunctionDeclaration (line 81) | type FunctionDeclaration = _PyFunctionDeclaration; type FunctionParameter (line 82) | type FunctionParameter = _PyFunctionParameter; type Assignment (line 85) | type Assignment = _PyAssignment; type AugmentedAssignment (line 86) | type AugmentedAssignment = _PyAugmentedAssignment; type AugmentedOperator (line 87) | type AugmentedOperator = _PyAugmentedOperator; type Block (line 88) | type Block = _PyBlock; type BreakStatement (line 89) | type BreakStatement = _PyBreakStatement; type ContinueStatement (line 90) | type ContinueStatement = _PyContinueStatement; type EmptyStatement (line 91) | type EmptyStatement = _PyEmptyStatement; type ExceptClause (line 92) | type ExceptClause = _PyExceptClause; type ExpressionStatement (line 93) | type ExpressionStatement = _PyExpressionStatement; type ForStatement (line 94) | type ForStatement = _PyForStatement; type IfStatement (line 95) | type IfStatement = _PyIfStatement; type ImportStatement (line 96) | type ImportStatement = _PyImportStatement; type RaiseStatement (line 97) | type RaiseStatement = _PyRaiseStatement; type ReturnStatement (line 98) | type ReturnStatement = _PyReturnStatement; type TryStatement (line 99) | type TryStatement = _PyTryStatement; type WhileStatement (line 100) | type WhileStatement = _PyWhileStatement; type WithItem (line 101) | type WithItem = _PyWithItem; type WithStatement (line 102) | type WithStatement = _PyWithStatement; type AsyncExpression (line 105) | type AsyncExpression = _PyAsyncExpression; type AwaitExpression (line 106) | type AwaitExpression = _PyAwaitExpression; type BinaryExpression (line 107) | type BinaryExpression = _PyBinaryExpression; type BinaryOperator (line 108) | type BinaryOperator = _PyBinaryOperator; type CallExpression (line 109) | type CallExpression = _PyCallExpression; type DictExpression (line 110) | type DictExpression = _PyDictExpression; type FStringExpression (line 111) | type FStringExpression = _PyFStringExpression; type GeneratorExpression (line 112) | type GeneratorExpression = _PyGeneratorExpression; type Identifier (line 113) | type Identifier = _PyIdentifier; type KeywordArgument (line 114) | type KeywordArgument = _PyKeywordArgument; type LambdaExpression (line 115) | type LambdaExpression = _PyLambdaExpression; type ListExpression (line 116) | type ListExpression = _PyListExpression; type Literal (line 117) | type Literal = _PyLiteral; type MemberExpression (line 118) | type MemberExpression = _PyMemberExpression; type SetExpression (line 119) | type SetExpression = _PySetExpression; type SubscriptExpression (line 120) | type SubscriptExpression = _PySubscriptExpression; type SubscriptSlice (line 121) | type SubscriptSlice = _PySubscriptSlice; type TupleExpression (line 122) | type TupleExpression = _PyTupleExpression; type YieldExpression (line 123) | type YieldExpression = _PyYieldExpression; type YieldFromExpression (line 124) | type YieldFromExpression = _PyYieldFromExpression; type Comprehension (line 127) | type Comprehension = _PyComprehension; type ComprehensionNode (line 128) | type ComprehensionNode = _PyComprehensionNode; type DictComprehension (line 129) | type DictComprehension = _PyDictComprehension; type ListComprehension (line 130) | type ListComprehension = _PyListComprehension; type SetComprehension (line 131) | type SetComprehension = _PySetComprehension; type PrinterOptions (line 134) | type PrinterOptions = _PyPrinterOptions; type LiteralValue (line 137) | type LiteralValue = _PyLiteralValue; FILE: packages/openapi-python/src/py-compiler/nodes/base.ts type PyNodeBase (line 7) | interface PyNodeBase { type PyNode (line 13) | type PyNode = PyBlock | PyExpression | PySourceFile | PyStatement; FILE: packages/openapi-python/src/py-compiler/nodes/comprehension.ts type PyComprehension (line 7) | type PyComprehension = PyDictComprehension | PyListComprehension | PySet... type PyComprehensionNode (line 9) | interface PyComprehensionNode extends PyNodeBase { FILE: packages/openapi-python/src/py-compiler/nodes/declarations/class.ts type PyClassDeclaration (line 8) | interface PyClassDeclaration extends PyNodeBase { function createClassDeclaration (line 17) | function createClassDeclaration( FILE: packages/openapi-python/src/py-compiler/nodes/declarations/function.ts type PyFunctionDeclaration (line 9) | interface PyFunctionDeclaration extends PyNodeBase { function createFunctionDeclaration (line 20) | function createFunctionDeclaration( FILE: packages/openapi-python/src/py-compiler/nodes/declarations/functionParameter.ts type PyFunctionParameter (line 5) | interface PyFunctionParameter extends PyNodeBase { function createFunctionParameter (line 12) | function createFunctionParameter( FILE: packages/openapi-python/src/py-compiler/nodes/expression.ts type PyExpression (line 22) | type PyExpression = FILE: packages/openapi-python/src/py-compiler/nodes/expressions/async.ts type PyAsyncExpression (line 5) | interface PyAsyncExpression extends PyNodeBase { function createAsyncExpression (line 10) | function createAsyncExpression(expression: PyExpression): PyAsyncExpress... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/await.ts type PyAwaitExpression (line 5) | interface PyAwaitExpression extends PyNodeBase { function createAwaitExpression (line 10) | function createAwaitExpression(expression: PyExpression): PyAwaitExpress... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/binary.ts type PyBinaryOperator (line 5) | type PyBinaryOperator = type PyBinaryExpression (line 26) | interface PyBinaryExpression extends PyNodeBase { function createBinaryExpression (line 33) | function createBinaryExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/call.ts type PyCallExpression (line 5) | interface PyCallExpression extends PyNodeBase { function createCallExpression (line 11) | function createCallExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/dict.ts type PyDictComprehension (line 5) | interface PyDictComprehension extends PyComprehensionNode { function createDictComprehension (line 11) | function createDictComprehension( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/list.ts type PyListComprehension (line 5) | interface PyListComprehension extends PyComprehensionNode { function createListComprehension (line 10) | function createListComprehension( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/comprehensions/set.ts type PySetComprehension (line 5) | interface PySetComprehension extends PyComprehensionNode { function createSetComprehension (line 10) | function createSetComprehension( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/dict.ts type PyDictExpression (line 5) | interface PyDictExpression extends PyNodeBase { function createDictExpression (line 13) | function createDictExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/fString.ts type PyFStringExpression (line 5) | interface PyFStringExpression extends PyNodeBase { function createFStringExpression (line 10) | function createFStringExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/generator.ts type PyGeneratorExpression (line 5) | interface PyGeneratorExpression extends PyNodeBase { function createGeneratorExpression (line 14) | function createGeneratorExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/identifier.ts type PyIdentifier (line 4) | interface PyIdentifier extends PyNodeBase { function createIdentifier (line 9) | function createIdentifier( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/keywordArg.ts type PyKeywordArgument (line 5) | interface PyKeywordArgument extends PyNodeBase { function createKeywordArgument (line 11) | function createKeywordArgument( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/lambda.ts type PyLambdaExpression (line 6) | interface PyLambdaExpression extends PyNodeBase { function createLambdaExpression (line 12) | function createLambdaExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/list.ts type PyListExpression (line 4) | interface PyListExpression extends PyNodeBase { function createListExpression (line 9) | function createListExpression(elements: ReadonlyArray): PyListEx... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/literal.ts type PyLiteralValue (line 4) | type PyLiteralValue = string | number | boolean | null; type PyLiteral (line 6) | interface PyLiteral extends PyNodeBase { function createLiteral (line 11) | function createLiteral( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/member.ts type PyMemberExpression (line 6) | interface PyMemberExpression extends PyNodeBase { function createMemberExpression (line 12) | function createMemberExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/set.ts type PySetExpression (line 5) | interface PySetExpression extends PyNodeBase { function createSetExpression (line 10) | function createSetExpression(elements: ReadonlyArray): PyS... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/subscript-slice.ts type PySubscriptSlice (line 5) | interface PySubscriptSlice extends PyNodeBase { function createSubscriptSlice (line 10) | function createSubscriptSlice(elements: ReadonlyArray): Py... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/subscript.ts type PySubscriptExpression (line 5) | interface PySubscriptExpression extends PyNodeBase { function createSubscriptExpression (line 11) | function createSubscriptExpression( FILE: packages/openapi-python/src/py-compiler/nodes/expressions/tuple.ts type PyTupleExpression (line 5) | interface PyTupleExpression extends PyNodeBase { function createTupleExpression (line 10) | function createTupleExpression(elements: ReadonlyArray): P... FILE: packages/openapi-python/src/py-compiler/nodes/expressions/yield.ts type PyYieldExpression (line 5) | interface PyYieldExpression extends PyNodeBase { function createYieldExpression (line 10) | function createYieldExpression(value?: PyExpression): PyYieldExpression { FILE: packages/openapi-python/src/py-compiler/nodes/expressions/yieldFrom.ts type PyYieldFromExpression (line 5) | interface PyYieldFromExpression extends PyNodeBase { function createYieldFromExpression (line 10) | function createYieldFromExpression(expression: PyExpression): PyYieldFro... FILE: packages/openapi-python/src/py-compiler/nodes/kinds.ts type PyNodeKind (line 1) | enum PyNodeKind { FILE: packages/openapi-python/src/py-compiler/nodes/statement.ts type PyStatement (line 20) | type PyStatement = FILE: packages/openapi-python/src/py-compiler/nodes/statements/assignment.ts type PyAssignment (line 5) | interface PyAssignment extends PyNodeBase { function createAssignment (line 12) | function createAssignment( FILE: packages/openapi-python/src/py-compiler/nodes/statements/augmentedAssignment.ts type PyAugmentedOperator (line 5) | type PyAugmentedOperator = type PyAugmentedAssignment (line 19) | interface PyAugmentedAssignment extends PyNodeBase { function createAugmentedAssignment (line 26) | function createAugmentedAssignment( FILE: packages/openapi-python/src/py-compiler/nodes/statements/block.ts type PyBlock (line 5) | interface PyBlock extends PyNodeBase { function createBlock (line 10) | function createBlock( FILE: packages/openapi-python/src/py-compiler/nodes/statements/break.ts type PyBreakStatement (line 4) | interface PyBreakStatement extends PyNodeBase { function createBreakStatement (line 8) | function createBreakStatement(): PyBreakStatement { FILE: packages/openapi-python/src/py-compiler/nodes/statements/continue.ts type PyContinueStatement (line 4) | interface PyContinueStatement extends PyNodeBase { function createContinueStatement (line 8) | function createContinueStatement(): PyContinueStatement { FILE: packages/openapi-python/src/py-compiler/nodes/statements/empty.ts type PyEmptyStatement (line 4) | interface PyEmptyStatement extends PyNodeBase { function createEmptyStatement (line 8) | function createEmptyStatement(): PyEmptyStatement { FILE: packages/openapi-python/src/py-compiler/nodes/statements/except.ts type PyExceptClause (line 8) | interface PyExceptClause extends PyNodeBase { function createExceptClause (line 15) | function createExceptClause( FILE: packages/openapi-python/src/py-compiler/nodes/statements/expression.ts type PyExpressionStatement (line 5) | interface PyExpressionStatement extends PyNodeBase { function createExpressionStatement (line 10) | function createExpressionStatement(expression: PyExpression): PyExpressi... FILE: packages/openapi-python/src/py-compiler/nodes/statements/for.ts type PyForStatement (line 8) | interface PyForStatement extends PyNodeBase { function createForStatement (line 16) | function createForStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/if.ts type PyIfStatement (line 7) | interface PyIfStatement extends PyNodeBase { function createIfStatement (line 14) | function createIfStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/import.ts type PyImportStatement (line 4) | interface PyImportStatement extends PyNodeBase { function createImportStatement (line 11) | function createImportStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/raise.ts type PyRaiseStatement (line 5) | interface PyRaiseStatement extends PyNodeBase { function createRaiseStatement (line 10) | function createRaiseStatement(expression?: PyExpression): PyRaiseStateme... FILE: packages/openapi-python/src/py-compiler/nodes/statements/return.ts type PyReturnStatement (line 5) | interface PyReturnStatement extends PyNodeBase { function createReturnStatement (line 10) | function createReturnStatement(expression?: PyExpression): PyReturnState... FILE: packages/openapi-python/src/py-compiler/nodes/statements/try.ts type PyTryStatement (line 7) | interface PyTryStatement extends PyNodeBase { function createTryStatement (line 15) | function createTryStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/while.ts type PyWhileStatement (line 8) | interface PyWhileStatement extends PyNodeBase { function createWhileStatement (line 15) | function createWhileStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/with.ts type PyWithStatement (line 8) | interface PyWithStatement extends PyNodeBase { function createWithStatement (line 15) | function createWithStatement( FILE: packages/openapi-python/src/py-compiler/nodes/statements/withItem.ts type PyWithItem (line 5) | interface PyWithItem extends PyNodeBase { function createWithItem (line 11) | function createWithItem( FILE: packages/openapi-python/src/py-compiler/nodes/structure/comment.ts type PyComment (line 4) | interface PyComment extends PyNodeBase { function createComment (line 9) | function createComment(text: string): PyComment { FILE: packages/openapi-python/src/py-compiler/nodes/structure/sourceFile.ts type PySourceFile (line 4) | interface PySourceFile extends PyNodeBase { function createSourceFile (line 10) | function createSourceFile( FILE: packages/openapi-python/src/py-compiler/printer.ts type PyPrinterOptions (line 4) | interface PyPrinterOptions { constant DEFAULT_INDENT_SIZE (line 8) | const DEFAULT_INDENT_SIZE = 4; constant PARAMS_MULTILINE_THRESHOLD (line 9) | const PARAMS_MULTILINE_THRESHOLD = 3; function createPrinter (line 11) | function createPrinter(options?: PyPrinterOptions) { function printAst (line 455) | function printAst(node: PyNode): string { FILE: packages/openapi-python/src/py-dsl/base.ts method analyze (line 23) | analyze(_: AnalysisContext): void {} method clone (line 24) | clone(): this { method name (line 31) | get name(): Node['name'] { method toAst (line 51) | toAst(): T { method $if (line 78) | $if( method $maybeId (line 152) | protected $maybeId( method $name (line 160) | protected $name(name: Ref): string { method $node (line 172) | protected $node(value: I): NodeOfMaybe { method unwrap (line 223) | private unwrap(value: I): I extends PyDsl ? N : I { type NodeOfMaybe (line 228) | type NodeOfMaybe = undefined extends I type NodeOf (line 232) | type NodeOf = type MaybePyDsl (line 243) | type MaybePyDsl = FILE: packages/openapi-python/src/py-dsl/decl/class.ts type Body (line 13) | type Body = Array>; class ClassPyDsl (line 17) | class ClassPyDsl extends Mixed { method constructor (line 24) | constructor(name: NodeName) { method analyze (line 32) | override analyze(ctx: AnalysisContext): void { method isValid (line 49) | get isValid(): boolean { method hasBody (line 54) | get hasBody(): boolean { method do (line 59) | do(...items: Body): this { method extends (line 65) | extends(...baseClass: ReadonlyArray): this { method newline (line 71) | newline(): this { method toAst (line 76) | override toAst() { method $validate (line 108) | $validate(): asserts this { method missingRequiredCalls (line 114) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/decl/func.ts class FuncPyDsl (line 23) | class FuncPyDsl extends Mixed { method constructor (line 27) | constructor( method analyze (line 41) | override analyze(ctx: AnalysisContext): void { method isValid (line 52) | get isValid(): boolean { method toAst (line 56) | override toAst() { method $validate (line 69) | $validate(): asserts this { method missingRequiredCalls (line 75) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/decl/param.ts type ParamDefaultValue (line 7) | type ParamDefaultValue = NodeName | py.Expression | undefined; type ParamFn (line 8) | type ParamFn = (p: ParamPyDsl) => void; type ParamName (line 9) | type ParamName = NodeName | ParamFn; type ParamType (line 10) | type ParamType = NodeName | PyDsl | undefined; type ParamCtor (line 12) | type ParamCtor = (name: ParamName, fn?: ParamFn) => ParamPyDsl; class ParamPyDsl (line 14) | class ParamPyDsl extends PyDsl { method constructor (line 20) | constructor(name: ParamName, fn?: ParamFn) { method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method default (line 38) | default(value: ParamDefaultValue): this { method isValid (line 43) | get isValid(): boolean { method type (line 48) | type(type: ParamType): this { method toAst (line 53) | override toAst() { method $validate (line 62) | $validate(): asserts this { method missingRequiredCalls (line 68) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/expr/attr.ts type AttrLeft (line 10) | type AttrLeft = NodeName | MaybePyDsl; type AttrCtor (line 11) | type AttrCtor = (left: AttrLeft, right: NodeName) => AttrPyDsl; class AttrPyDsl (line 15) | class AttrPyDsl extends Mixed { method constructor (line 20) | constructor(left: AttrLeft, right: NodeName) { method analyze (line 26) | override analyze(ctx: AnalysisContext): void { method isValid (line 33) | get isValid(): boolean { method toAst (line 37) | override toAst() { method $validate (line 49) | $validate(): asserts this is this & { method missingRequiredCalls (line 57) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/expr/binary.ts type PyBinaryOperator (line 8) | type PyBinaryOperator = class BinaryPyDsl (line 31) | class BinaryPyDsl extends Mixed { method constructor (line 38) | constructor( method analyze (line 49) | override analyze(ctx: AnalysisContext): void { method isValid (line 56) | get isValid(): boolean { method and (line 60) | and(right: MaybePyDsl): this { method div (line 64) | div(right: MaybePyDsl): this { method eq (line 68) | eq(right: MaybePyDsl): this { method floordiv (line 72) | floordiv(right: MaybePyDsl): this { method gt (line 76) | gt(right: MaybePyDsl): this { method gte (line 80) | gte(right: MaybePyDsl): this { method in_ (line 84) | in_(right: MaybePyDsl): this { method is (line 88) | is(right: MaybePyDsl): this { method isNot (line 92) | isNot(right: MaybePyDsl): this { method lt (line 96) | lt(right: MaybePyDsl): this { method lte (line 100) | lte(right: MaybePyDsl): this { method minus (line 104) | minus(right: MaybePyDsl): this { method mod (line 108) | mod(right: MaybePyDsl): this { method neq (line 112) | neq(right: MaybePyDsl): this { method notIn (line 116) | notIn(right: MaybePyDsl): this { method or (line 120) | or(right: MaybePyDsl): this { method plus (line 124) | plus(right: MaybePyDsl): this { method pow (line 128) | pow(right: MaybePyDsl): this { method times (line 132) | times(right: MaybePyDsl): this { method toAst (line 136) | override toAst() { method $validate (line 146) | $validate(): asserts this is this & { method missingRequiredCalls (line 156) | private missingRequiredCalls(): ReadonlyArray { method opAndExpr (line 164) | private opAndExpr(op: PyBinaryOperator, right: MaybePyDsl; type CallCallee (line 12) | type CallCallee = NodeName | MaybePyDsl; type CallCtor (line 13) | type CallCtor = (callee: CallCallee, ...args: CallArgs) => CallPyDsl; class CallPyDsl (line 17) | class CallPyDsl extends Mixed { method constructor (line 22) | constructor(callee: CallCallee, ...args: CallArgs) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method isValid (line 34) | get isValid(): boolean { method toAst (line 38) | override toAst() { method $validate (line 44) | $validate(): asserts this is this & { method missingRequiredCalls (line 52) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/expr/dict.ts class DictPyDsl (line 10) | class DictPyDsl extends Mixed { method constructor (line 18) | constructor( method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method entry (line 33) | entry(key: MaybePyDsl, value: MaybePyDsl... method entries (line 38) | entries( method toAst (line 45) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/expr.ts type Id (line 9) | type Id = NodeName | MaybePyDsl; class ExprPyDsl (line 13) | class ExprPyDsl extends Mixed { method constructor (line 18) | constructor(id: Id) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method toAst (line 33) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/identifier.ts class IdPyDsl (line 8) | class IdPyDsl extends Mixed { method constructor (line 11) | constructor(name: NodeName) { method analyze (line 16) | override analyze(ctx: AnalysisContext): void { method toAst (line 21) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/kwarg.ts type KwargValue (line 7) | type KwargValue = string | number | boolean | null | MaybePyDsl { method constructor (line 14) | constructor(name: NodeName, value: KwargValue) { method toAst (line 20) | override toAst() { method $valueToNode (line 25) | private $valueToNode(value: KwargValue) { FILE: packages/openapi-python/src/py-dsl/expr/list.ts class ListPyDsl (line 10) | class ListPyDsl extends Mixed { method constructor (line 15) | constructor(...elements: Array>) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method element (line 27) | element(expr: MaybePyDsl): this { method elements (line 32) | elements(...exprs: ReadonlyArray>): this { method toAst (line 37) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/literal.ts class LiteralPyDsl (line 8) | class LiteralPyDsl extends Mixed { method constructor (line 13) | constructor(value: py.LiteralValue) { method analyze (line 18) | override analyze(_ctx: AnalysisContext): void { method toAst (line 22) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/set.ts class SetPyDsl (line 10) | class SetPyDsl extends Mixed { method constructor (line 15) | constructor(...elements: Array>) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method element (line 27) | element(expr: MaybePyDsl): this { method elements (line 32) | elements(...exprs: ReadonlyArray>): this { method toAst (line 37) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/subscript.ts type SubscriptExpr (line 9) | type SubscriptExpr = NodeName | PyDsl; type SubscriptCtor (line 10) | type SubscriptCtor = ( class SubscriptPyDsl (line 17) | class SubscriptPyDsl extends Mixed { method constructor (line 23) | constructor(value: SubscriptExpr, ...slices: Array) { method analyze (line 29) | override analyze(ctx: AnalysisContext): void { method toAst (line 37) | override toAst() { FILE: packages/openapi-python/src/py-dsl/expr/tuple.ts type TupleElement (line 9) | type TupleElement = NodeName | MaybePyDsl; class TuplePyDsl (line 13) | class TuplePyDsl extends Mixed { method constructor (line 18) | constructor(...elements: Array) { method analyze (line 23) | override analyze(ctx: AnalysisContext): void { method element (line 30) | element(expr: TupleElement): this { method elements (line 35) | elements(...exprs: ReadonlyArray): this { method toAst (line 40) | override toAst() { FILE: packages/openapi-python/src/py-dsl/index.ts type DollarPyDsl (line 305) | type DollarPyDsl = { FILE: packages/openapi-python/src/py-dsl/layout/doc.ts type DocMaybeLazy (line 9) | type DocMaybeLazy = ((ctx: PyDslContext) => T) | T; type DocFn (line 10) | type DocFn = (d: DocPyDsl) => void; type DocLines (line 11) | type DocLines = DocMaybeLazy>; class DocPyDsl (line 13) | class DocPyDsl extends PyDsl { method constructor (line 18) | constructor(lines?: DocLines, fn?: DocFn) { method analyze (line 24) | override analyze(ctx: AnalysisContext): void { method add (line 28) | add(lines: DocLines): this { method resolve (line 33) | resolve(): string | undefined { method toAst (line 45) | override toAst() { FILE: packages/openapi-python/src/py-dsl/layout/hint.ts type HintMaybeLazy (line 9) | type HintMaybeLazy = ((ctx: PyDslContext) => T) | T; type HintFn (line 10) | type HintFn = (d: HintPyDsl) => void; type HintLines (line 11) | type HintLines = HintMaybeLazy>; class HintPyDsl (line 13) | class HintPyDsl extends PyDsl { method constructor (line 18) | constructor(lines?: HintLines, fn?: HintFn) { method analyze (line 24) | override analyze(ctx: AnalysisContext): void { method add (line 28) | add(lines: HintLines): this { method apply (line 33) | apply(node: T): T { method toAst (line 43) | override toAst() { method _resolveLines (line 49) | private _resolveLines(): Array { FILE: packages/openapi-python/src/py-dsl/layout/newline.ts class NewlinePyDsl (line 6) | class NewlinePyDsl extends PyDsl { method analyze (line 9) | override analyze(ctx: AnalysisContext): void { method toAst (line 13) | override toAst() { FILE: packages/openapi-python/src/py-dsl/mixins/args.ts type Arg (line 8) | type Arg = NodeName | MaybePyDsl; type ArgsMethods (line 10) | interface ArgsMethods extends Node { function ArgsMixin (line 22) | function ArgsMixin>(Base: T... FILE: packages/openapi-python/src/py-dsl/mixins/decorator.ts type DecoratorArg (line 8) | type DecoratorArg = MaybePyDsl; type DecoratorName (line 9) | type DecoratorName = NodeName | MaybePyDsl; type DecoratorMethods (line 11) | interface DecoratorMethods extends Node { function DecoratorMixin (line 16) | function DecoratorMixin>(Ba... FILE: packages/openapi-python/src/py-dsl/mixins/do.ts type DoExpr (line 8) | type DoExpr = MaybePyDsl; type DoMethods (line 10) | interface DoMethods extends Node { function DoMixin (line 18) | function DoMixin>(Base: TBa... FILE: packages/openapi-python/src/py-dsl/mixins/doc.ts type DocMethods (line 8) | interface DocMethods extends Node { function DocMixin (line 13) | function DocMixin>(Base: TB... FILE: packages/openapi-python/src/py-dsl/mixins/expr.ts type ExprMethods (line 7) | interface ExprMethods extends Node { function ExprMixin (line 18) | function ExprMixin>(B... FILE: packages/openapi-python/src/py-dsl/mixins/hint.ts type HintMethods (line 8) | interface HintMethods extends Node { function HintMixin (line 13) | function HintMixin>(Base: T... FILE: packages/openapi-python/src/py-dsl/mixins/layout.ts type LayoutMethods (line 6) | interface LayoutMethods extends Node { function LayoutMixin (line 17) | function LayoutMixin>(Base:... FILE: packages/openapi-python/src/py-dsl/mixins/modifiers.ts type Modifiers (line 6) | type Modifiers = { type Modifier (line 17) | type Modifier = 'async'; type ModifierMethods (line 19) | interface ModifierMethods extends Modifiers { function modifierToKind (line 30) | function modifierToKind(modifier: Modifier): py.Expression { function ModifiersMixin (line 37) | function ModifiersMixin>(Ba... type AsyncMethods (line 62) | interface AsyncMethods extends Modifiers { function AsyncMixin (line 75) | function AsyncMixin>(Base: ... type ExportMethods (line 88) | interface ExportMethods extends Modifiers { function ExportMixin (line 101) | function ExportMixin>(Base:... FILE: packages/openapi-python/src/py-dsl/mixins/operator.ts type Expr (line 8) | type Expr = NodeName | MaybePyDsl; type OperatorMethods (line 10) | interface OperatorMethods extends Node { function OperatorMixin (line 32) | function OperatorMixin>(Base: ... FILE: packages/openapi-python/src/py-dsl/mixins/returns.ts type ReturnsMethods (line 7) | interface ReturnsMethods extends Node { function ReturnsMixin (line 12) | function ReturnsMixin>(Base... FILE: packages/openapi-python/src/py-dsl/mixins/types.ts type BaseCtor (line 4) | type BaseCtor = abstract new (...args: Array) =>... type DropFirst (line 6) | type DropFirst> = T extends [any, ...infer Rest] ? ... type MixinCtor (line 8) | type MixinCtor, K> = abstract new ( FILE: packages/openapi-python/src/py-dsl/mixins/value.ts type ValueExpr (line 8) | type ValueExpr = NodeName | PyDsl; type ValueMethods (line 10) | interface ValueMethods extends Node { function ValueMixin (line 16) | function ValueMixin>(Base: ... FILE: packages/openapi-python/src/py-dsl/stmt/block.ts class BlockPyDsl (line 11) | class BlockPyDsl extends Mixed { method constructor (line 14) | constructor(...items: Array) { method analyze (line 19) | override analyze(ctx: AnalysisContext) { method toAst (line 23) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/break.ts class BreakPyDsl (line 8) | class BreakPyDsl extends Mixed { method analyze (line 11) | override analyze(_ctx: AnalysisContext): void { method toAst (line 15) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/continue.ts class ContinuePyDsl (line 8) | class ContinuePyDsl extends Mixed { method analyze (line 11) | override analyze(_ctx: AnalysisContext): void { method toAst (line 15) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/for.ts class ForPyDsl (line 11) | class ForPyDsl extends Mixed { method constructor (line 19) | constructor( method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method isValid (line 56) | get isValid(): boolean { method body (line 60) | body(...items: Array): this { method else (line 65) | else(...items: Array): this { method toAst (line 70) | override toAst() { method $validate (line 84) | $validate(): asserts this is this & { method missingRequiredCalls (line 94) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/stmt/if.ts type IfCondition (line 10) | type IfCondition = string | MaybePyDsl; class IfPyDsl (line 14) | class IfPyDsl extends Mixed { method constructor (line 20) | constructor(condition?: IfCondition) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method isValid (line 41) | get isValid(): boolean { method condition (line 45) | condition(condition: IfCondition): this { method otherwise (line 50) | otherwise(...items: Array): this { method toAst (line 55) | override toAst() { method $validate (line 68) | $validate(): asserts this is this & { method missingRequiredCalls (line 76) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/stmt/import.ts type ImportName (line 6) | type ImportName = { alias?: string; name: string }; class ImportPyDsl (line 10) | class ImportPyDsl extends Mixed { method constructor (line 20) | constructor( method from (line 37) | static from(module: string, names?: ReadonlyArray): Import... method direct (line 41) | static direct(module: string): ImportPyDsl { method analyze (line 45) | override analyze(_ctx: AnalysisContext): void { method toAst (line 49) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/raise.ts class RaisePyDsl (line 10) | class RaisePyDsl extends Mixed { method constructor (line 16) | constructor(error?: string | MaybePyDsl) { method analyze (line 21) | override analyze(ctx: AnalysisContext): void { method toAst (line 33) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/return.ts type ReturnExpr (line 9) | type ReturnExpr = NodeName | MaybePyDsl; type ReturnCtor (line 10) | type ReturnCtor = (expr?: ReturnExpr) => ReturnPyDsl; class ReturnPyDsl (line 14) | class ReturnPyDsl extends Mixed { method constructor (line 19) | constructor(expr?: ReturnExpr) { method analyze (line 24) | override analyze(ctx: AnalysisContext): void { method toAst (line 29) | override toAst() { FILE: packages/openapi-python/src/py-dsl/stmt/stmt.ts class StmtPyDsl (line 8) | class StmtPyDsl extends Mixed { method constructor (line 13) | constructor(inner: py.Expression | py.Statement | PyDsl) { method analyze (line 18) | override analyze(ctx: AnalysisContext): void { method toAst (line 23) | override toAst() { function isStatement (line 31) | function isStatement(node: py.Expression | py.Statement): node is py.Sta... FILE: packages/openapi-python/src/py-dsl/stmt/try.ts type ExceptType (line 13) | type ExceptType = string | MaybePyDsl; type ExceptEntry (line 15) | interface ExceptEntry { function exceptKey (line 21) | function exceptKey(types: Array): string { class TryPyDsl (line 28) | class TryPyDsl extends Mixed { method constructor (line 43) | constructor(...tryBlock: Array) { method analyze (line 48) | override analyze(ctx: AnalysisContext): void { method isValid (line 82) | get isValid(): boolean { method except (line 103) | except( method exceptAll (line 140) | exceptAll(...body: Array): this { method finally (line 152) | finally(...items: Array): this { method try (line 157) | try(...items: Array): this { method toAst (line 162) | override toAst() { method $validate (line 199) | $validate(): asserts this is this & { method missingRequiredCalls (line 207) | private missingRequiredCalls(): ReadonlyArray { method _isNodeName (line 218) | private _isNodeName(value: unknown): boolean { FILE: packages/openapi-python/src/py-dsl/stmt/var.ts type VarType (line 11) | type VarType = NodeName | PyDsl; class VarPyDsl (line 13) | class VarPyDsl extends Mixed { method constructor (line 19) | constructor(name?: NodeName) { method analyze (line 27) | override analyze(ctx: AnalysisContext): void { method isValid (line 34) | get isValid(): boolean { method type (line 39) | type(type: VarType): this { method toAst (line 44) | override toAst() { method $validate (line 53) | $validate(): asserts this { method $type (line 59) | protected $type(): py.Expression | undefined { method missingRequiredCalls (line 63) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/stmt/while.ts class WhilePyDsl (line 11) | class WhilePyDsl extends Mixed { method constructor (line 18) | constructor(condition: MaybePyDsl, ...body: Array): this { method else (line 58) | else(...items: Array): this { method toAst (line 63) | override toAst() { method $validate (line 76) | $validate(): asserts this is this & { method missingRequiredCalls (line 85) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/stmt/with.ts type WithItemInput (line 11) | type WithItemInput = class WithPyDsl (line 15) | class WithPyDsl extends Mixed { method constructor (line 22) | constructor(...items: Array) { method analyze (line 27) | override analyze(ctx: AnalysisContext): void { method isValid (line 51) | get isValid(): boolean { method body (line 55) | body(...items: Array): this { method item (line 60) | item(item: WithItemInput): this { method modifier (line 65) | modifier(expr: MaybePyDsl): this { method async (line 70) | async(): this { method toAst (line 75) | override toAst() { method $validate (line 94) | $validate(): asserts this is this & { method missingRequiredCalls (line 102) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-python/src/py-dsl/utils/context.ts type NodeChain (line 12) | type NodeChain = ReadonlyArray; type AccessOptions (line 14) | interface AccessOptions { type ExampleOptions (line 25) | interface ExampleOptions { class PyDslContext (line 153) | class PyDslContext { FILE: packages/openapi-python/src/py-dsl/utils/factories.ts type Ctor (line 6) | type Ctor = (...args: Array) => any; type Factory (line 8) | type Factory = { function createFactory (line 14) | function createFactory(name: string): Factory { FILE: packages/openapi-python/src/py-dsl/utils/lazy.ts type LazyThunk (line 8) | type LazyThunk = (ctx: PyDslContext) => PyDsl; class LazyPyDsl (line 10) | class LazyPyDsl extends PyDsl { method constructor (line 15) | constructor(thunk: LazyThunk) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method toResult (line 25) | toResult(): PyDsl { method toAst (line 29) | override toAst() { FILE: packages/openapi-python/src/py-dsl/utils/render-utils.ts function astToString (line 12) | function astToString(node: py.Node): string { type SortGroup (line 17) | type SortGroup = number; type SortDistance (line 18) | type SortDistance = number; type SortModule (line 19) | type SortModule = string; type SortKey (line 20) | type SortKey = [SortGroup, SortDistance, SortModule]; type ModuleExport (line 22) | type ModuleExport = Omit & { type ModuleImport (line 27) | type ModuleImport = Omit & { function moduleSortKey (line 32) | function moduleSortKey({ FILE: packages/openapi-python/src/py-dsl/utils/render.ts type Exports (line 10) | type Exports = ReadonlyArray>; type ExportsOptions (line 11) | type ExportsOptions = { type Header (line 14) | type Header = MaybeArray | null | undefined; type HeaderArg (line 15) | type HeaderArg = MaybeFunc<(ctx: RenderContext) => Header>; type Imports (line 16) | type Imports = Array>; function headerToLines (line 18) | function headerToLines(header: Header): ReadonlyArray { class PythonRenderer (line 31) | class PythonRenderer implements Renderer { method constructor (line 51) | constructor( method render (line 62) | render(ctx: RenderContext): string { method supports (line 75) | supports(ctx: RenderContext): boolean { method astToString (line 79) | static astToString(args: { method toExportAst (line 162) | static toExportAst(group: ModuleExport, options?: ExportsOptions): py.... method toImportAst (line 171) | static toImportAst(group: ModuleImport): py.ImportStatement { method getExports (line 182) | private getExports(ctx: RenderContext): Exports { method getImports (line 248) | private getImports(ctx: RenderContext): Imports { FILE: packages/openapi-python/src/py-dsl/utils/reserved.ts type List (line 3) | type List = ReadonlyArray; class ReservedList (line 5) | class ReservedList { method constructor (line 9) | constructor(values: List) { method '~values' (line 14) | get '~values'() { method set (line 24) | set(values: List | ((prev: List) => List)): void { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/preact-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/svelte-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/@tanstack/vue-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/__snapshots__/plugins/@tanstack/meta/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/body-response-text-plain/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/form-data/sdk.gen.ts type Options (line 7) | type Options(optio... method patchApiVbyApiVersionNoTag (line 21) | public patchApiVbyApiVersionNoTag(options?: Options<... method postApiVbyApiVersionBody (line 44) | public postApiVbyApiVersionBody(... class SimpleServiceRequests (line 55) | class SimpleServiceRequests { method deleteCallWithoutParametersAndResponse (line 56) | public deleteCallWithoutParametersAndResponse(opti... class ParametersServiceRequests (line 133) | class ParametersServiceRequests { method callWithParameters (line 134) | public callWithParameters(option... method callWithWeirdParameterNames (line 143) | public callWithWeirdParameterNames... method callWithDefaultOptionalParameters (line 164) | public callWithDefaultOptionalParameters(o... class DuplicateServiceRequests (line 184) | class DuplicateServiceRequests { method duplicateName (line 185) | public duplicateName(options?: O... method duplicateName2 (line 194) | public duplicateName2(options?: ... method duplicateName3 (line 203) | public duplicateName3(options?: ... method duplicateName4 (line 212) | public duplicateName4(options?: ... class NoContentServiceRequests (line 223) | class NoContentServiceRequests { method callWithNoContentResponse (line 224) | public callWithNoContentResponse... method callWithResponseAndNoContentResponse (line 233) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 263) | public callWithDuplicateResponses(options... class MultipleTags1ServiceRequests (line 283) | class MultipleTags1ServiceRequests { method dummyA (line 284) | public dummyA(options?: Options<... method dummyB (line 293) | public dummyB(options?: Options<... class MultipleTags2ServiceRequests (line 304) | class MultipleTags2ServiceRequests { method dummyA (line 305) | public dummyA(options?: Options<... method dummyB (line 314) | public dummyB(options?: Options<... class MultipleTags3ServiceRequests (line 325) | class MultipleTags3ServiceRequests { method dummyB (line 326) | public dummyB(options?: Options<... class CollectionFormatServiceRequests (line 337) | class CollectionFormatServiceRequests { method collectionFormat (line 338) | public collectionFormat(options:... class TypesServiceRequests (line 349) | class TypesServiceRequests { method types (line 350) | public types(options: Options(options: Opt... class HeaderServiceRequests (line 373) | class HeaderServiceRequests { method callWithResultFromHeader (line 374) | public callWithResultFromHeader(... class ErrorServiceRequests (line 385) | class ErrorServiceRequests { method testErrorCode (line 386) | public testErrorCode(options: Op... class NonAsciiÆøåÆøÅöôêÊServiceRequests (line 397) | class NonAsciiÆøåÆøÅöôêÊServiceRequests { method nonAsciiæøåÆøÅöôêÊ字符串 (line 398) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... class DefaultServiceResources (line 409) | class DefaultServiceResources { method serviceWithEmptyTag (line 410) | public serviceWithEmptyTag(optio... method patchApiVbyApiVersionNoTag (line 417) | public patchApiVbyApiVersionNoTag(options?: () => Op... method postApiVbyApiVersionBody (line 436) | public postApiVbyApiVersionBody(... class SimpleServiceResources (line 445) | class SimpleServiceResources { method deleteCallWithoutParametersAndResponse (line 446) | public deleteCallWithoutParametersAndResponse(opti... class ParametersServiceResources (line 507) | class ParametersServiceResources { method callWithParameters (line 508) | public callWithParameters(option... method callWithWeirdParameterNames (line 515) | public callWithWeirdParameterNames... method callWithDefaultOptionalParameters (line 532) | public callWithDefaultOptionalParameters(o... class DuplicateServiceResources (line 548) | class DuplicateServiceResources { method duplicateName (line 549) | public duplicateName(options?: (... method duplicateName2 (line 556) | public duplicateName2(options?: ... method duplicateName3 (line 563) | public duplicateName3(options?: ... method duplicateName4 (line 570) | public duplicateName4(options?: ... class NoContentServiceResources (line 579) | class NoContentServiceResources { method callWithNoContentResponse (line 580) | public callWithNoContentResponse... method callWithResponseAndNoContentResponse (line 587) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 611) | public callWithDuplicateResponses(options... class MultipleTags1ServiceResources (line 627) | class MultipleTags1ServiceResources { method dummyA (line 628) | public dummyA(options?: () => Op... method dummyB (line 635) | public dummyB(options?: () => Op... class MultipleTags2ServiceResources (line 644) | class MultipleTags2ServiceResources { method dummyA (line 645) | public dummyA(options?: () => Op... method dummyB (line 652) | public dummyB(options?: () => Op... class MultipleTags3ServiceResources (line 661) | class MultipleTags3ServiceResources { method dummyB (line 662) | public dummyB(options?: () => Op... class CollectionFormatServiceResources (line 671) | class CollectionFormatServiceResources { method collectionFormat (line 672) | public collectionFormat(options:... class TypesServiceResources (line 681) | class TypesServiceResources { method types (line 682) | public types(options: () => Opti... class ComplexServiceResources (line 691) | class ComplexServiceResources { method complexTypes (line 692) | public complexTypes(options: () ... class HeaderServiceResources (line 701) | class HeaderServiceResources { method callWithResultFromHeader (line 702) | public callWithResultFromHeader(... class ErrorServiceResources (line 711) | class ErrorServiceResources { method testErrorCode (line 712) | public testErrorCode(options: ()... class NonAsciiÆøåÆøÅöôêÊServiceResources (line 721) | class NonAsciiÆøåÆøÅöôêÊServiceResources { method nonAsciiæøåÆøÅöôêÊ字符串 (line 722) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default-class/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@angular/common/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Domains (line 49) | class Domains extends HeyApiClient { method get (line 50) | public get(options?: Options(options?: Options(options?: Options(options?: Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/sdk.gen.ts type Options (line 7) | type Options(options?: Opti... method post (line 26) | public static post(options?: Opt... class Providers (line 31) | class Providers { class Business (line 35) | class Business { method get (line 36) | public static get(options?: Opti... class Business2 (line 43) | class Business2 { class Domains2 (line 47) | class Domains2 { method get (line 48) | public static get(options?: Opti... method post (line 52) | public static post(options?: Opt... class Providers2 (line 57) | class Providers2 { class Business3 (line 61) | class Business3 { class Providers3 (line 65) | class Providers3 { class Domains3 (line 69) | class Domains3 { method get (line 70) | public static get(options?: Opti... method post (line 74) | public static post(options?: Opt... class Providers4 (line 79) | class Providers4 { class Business4 (line 83) | class Business4 { class Domains4 (line 87) | class Domains4 { method putBusinessProvidersDomains (line 88) | public static putBusinessProvidersDomains(options?: Opti... class Locations (line 101) | class Locations { method get (line 102) | public static get(options?: Opti... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BusinessProvidersDomainsGetData (line 7) | type BusinessProvidersDomainsGetData = { type BusinessProvidersDomainsGetResponses (line 14) | type BusinessProvidersDomainsGetResponses = { type BusinessProvidersDomainsGetResponse (line 21) | type BusinessProvidersDomainsGetResponse = BusinessProvidersDomainsGetRe... type BusinessProvidersDomainsPostData (line 23) | type BusinessProvidersDomainsPostData = { type BusinessProvidersDomainsPostResponses (line 30) | type BusinessProvidersDomainsPostResponses = { type BusinessProvidersDomainsPostResponse (line 37) | type BusinessProvidersDomainsPostResponse = BusinessProvidersDomainsPost... type PutBusinessProvidersDomainsData (line 39) | type PutBusinessProvidersDomainsData = { type PutBusinessProvidersDomainsResponses (line 46) | type PutBusinessProvidersDomainsResponses = { type PutBusinessProvidersDomainsResponse (line 53) | type PutBusinessProvidersDomainsResponse = PutBusinessProvidersDomainsRe... type BusinessGetData (line 55) | type BusinessGetData = { type BusinessGetResponses (line 62) | type BusinessGetResponses = { type BusinessGetResponse (line 69) | type BusinessGetResponse = BusinessGetResponses[keyof BusinessGetRespons... type GetData (line 71) | type GetData = { type GetResponses (line 78) | type GetResponses = { type GetResponse (line 85) | type GetResponse = GetResponses[keyof GetResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Bar (line 49) | class Bar extends HeyApiClient { method post (line 50) | public post(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options<... method getFooBar (line 89) | public getFooBar(options?: Optio... method foo (line 94) | get foo(): Foo { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/instance/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/sdk/throwOnError/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Baz (line 7) | type Baz = { type QuxAllRead (line 11) | type QuxAllRead = { type ReadableFooRead (line 15) | type ReadableFooRead = ReadableBarRead & { type WritableFooRead (line 19) | type WritableFooRead = WritableBarRead; type ReadableBarRead (line 21) | type ReadableBarRead = Baz & { type WritableBarRead (line 25) | type WritableBarRead = Baz; type ReadableQuux (line 27) | type ReadableQuux = { type WritableQuux (line 32) | type WritableQuux = { type ReadableCorge (line 36) | type ReadableCorge = { type WritableCorge (line 43) | type WritableCorge = { type PostFooReadData (line 47) | type PostFooReadData = { type PostFooReadResponses (line 54) | type PostFooReadResponses = { type PostFooReadResponse (line 61) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooRead (line 7) | type FooRead = BarRead & { type BarRead (line 11) | type BarRead = Baz & { type Baz (line 15) | type Baz = { type QuxAllRead (line 19) | type QuxAllRead = { type Quux (line 23) | type Quux = { type Corge (line 28) | type Corge = { type PostFooReadData (line 35) | type PostFooReadData = { type PostFooReadResponses (line 42) | type PostFooReadResponses = { type PostFooReadResponse (line 49) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@pinia/colada/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/angular-query-experimental/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/@tanstack/preact-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/@tanstack/preact-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/@tanstack/preact-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/preact-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/@tanstack/react-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/react-query/useMutation/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/@tanstack/solid-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/solid-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/@tanstack/svelte-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/@tanstack/svelte-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/@tanstack/svelte-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/svelte-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/@tanstack/vue-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/@tanstack/vue-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/@tanstack/vue-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/plugins/@tanstack/vue-query/name-builder/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/ref-deep/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 16) | type Bar = { type GetFooData (line 25) | type GetFooData = { type GetFooResponses (line 32) | type GetFooResponses = { type PostFooData (line 39) | type PostFooData = { type PostFooResponses (line 46) | type PostFooResponses = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/schema-unknown/sdk.gen.ts type Options (line 7) | type Options; type Attachment (line 75) | type Attachment = { type AttachmentCollection (line 82) | type AttachmentCollection = Array; type SendEmailResponse (line 87) | type SendEmailResponse = { type StandardPostmarkResponse (line 98) | type StandardPostmarkResponse = { type SendEmailData (line 103) | type SendEmailData = { type SendEmailErrors (line 116) | type SendEmailErrors = { type SendEmailError (line 127) | type SendEmailError = SendEmailErrors[keyof SendEmailErrors]; type SendEmailResponses (line 129) | type SendEmailResponses = { type SendEmailResponse2 (line 136) | type SendEmailResponse2 = SendEmailResponses[keyof SendEmailResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-api-key/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-basic/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-false/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/security-oauth2/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-base-path/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers-host/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/servers/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-read-write/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooRead (line 7) | type FooRead = BarRead & { type BarRead (line 11) | type BarRead = Baz & { type Baz (line 15) | type Baz = { type QuxAllRead (line 19) | type QuxAllRead = { type Quux (line 23) | type Quux = { type Corge (line 28) | type Corge = { type FooReadWritable (line 35) | type FooReadWritable = BarReadWritable; type BarReadWritable (line 37) | type BarReadWritable = Baz; type QuuxWritable (line 39) | type QuuxWritable = { type CorgeWritable (line 43) | type CorgeWritable = { type PostFooReadData (line 47) | type PostFooReadData = { type PostFooReadResponses (line 54) | type PostFooReadResponses = { type PostFooReadResponse (line 61) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/2.0.x/transforms-schemas-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type User (line 7) | type User = { type UserProfile (line 13) | type UserProfile = { type Post (line 18) | type Post = { type Comment (line 25) | type Comment = { type GetUsersData (line 31) | type GetUsersData = { type GetUsersResponses (line 38) | type GetUsersResponses = { type GetUsersResponse (line 45) | type GetUsersResponse = GetUsersResponses[keyof GetUsersResponses]; type PostPostsData (line 47) | type PostPostsData = { type PostPostsResponses (line 54) | type PostPostsResponses = { type PostPostsResponse (line 61) | type PostPostsResponse = PostPostsResponses[keyof PostPostsResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/additional-properties-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = Foo & {}; type Baz (line 13) | type Baz = Foo & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/additional-properties-true/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { type Baz (line 16) | type Baz = Foo & { type Qux (line 21) | type Qux = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/additional-properties-undefined/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/array-items-one-of-length-1/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = string; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/array-nested-one-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = Array<{ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-binary-format/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/body-response-text-plain/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/content-types/sdk.gen.ts type Options (line 7) | type Options & { type Baz (line 16) | type Baz = Omit & { type Qux (line 21) | type Qux = Omit & { type FooMapped (line 26) | type FooMapped = { type BarMapped (line 30) | type BarMapped = Omit & { type BazMapped (line 35) | type BazMapped = Omit & { type QuxMapped (line 40) | type QuxMapped = Omit & { type FooUnion (line 45) | type FooUnion = ({ type BarUnion (line 51) | type BarUnion = { type BazUnion (line 56) | type BazUnion = { type QuxExtend (line 61) | type QuxExtend = FooUnion; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-allof-inline/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Omit & { type Baz (line 17) | type Baz = Omit & { type Qux (line 22) | type Qux = Omit & { type GetFoosData (line 27) | type GetFoosData = { type GetFoosResponses (line 34) | type GetFoosResponses = { type GetFoosResponse (line 41) | type GetFoosResponse = GetFoosResponses[keyof GetFoosResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-allof-nested/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type VehicleDto (line 7) | type VehicleDto = { type CarDto (line 12) | type CarDto = Omit & { type VolvoDto (line 17) | type VolvoDto = Omit & { type GetCarsData (line 22) | type GetCarsData = { type GetCarsResponses (line 29) | type GetCarsResponses = { type GetCarsResponse (line 36) | type GetCarsResponse = GetCarsResponses[keyof GetCarsResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-any-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = ({ type Baz (line 13) | type Baz = Qux; type Bar (line 15) | type Bar = Qux; type Spæcial (line 17) | type Spæcial = Qux; type Qux (line 19) | type Qux = { type Quux (line 24) | type Quux = 'Bar' | 'Baz'; type Quuz (line 26) | type Quuz = ({ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-mapped-many/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = ({ type Bar (line 15) | type Bar = { type Baz (line 19) | type Baz = { type Spæcial (line 23) | type Spæcial = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-non-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BooleanOneOf (line 7) | type BooleanOneOf = ({ type AutoConfig (line 13) | type AutoConfig = { type CustomConfig (line 18) | type CustomConfig = { type BooleanAnyOf (line 23) | type BooleanAnyOf = ({ type IntegerOneOf (line 29) | type IntegerOneOf = ({ type TypeOne (line 35) | type TypeOne = { type TypeTwo (line 40) | type TypeTwo = { type NumberOneOf (line 45) | type NumberOneOf = ({ type VersionAlpha (line 51) | type VersionAlpha = { type VersionBeta (line 56) | type VersionBeta = { type IntegerAllOfBase (line 61) | type IntegerAllOfBase = { type IntegerAllOfChildA (line 65) | type IntegerAllOfChildA = Omit & { type IntegerAllOfChildB (line 70) | type IntegerAllOfChildB = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-object-self-mapped/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BlogPostDto (line 7) | type BlogPostDto = { type BlogPostWithImageDto (line 13) | type BlogPostWithImageDto = Omit & { type GetBlogPostsData (line 18) | type GetBlogPostsData = { type GetBlogPostsResponses (line 25) | type GetBlogPostsResponses = { type GetBlogPostsResponse (line 32) | type GetBlogPostsResponse = GetBlogPostsResponses[keyof GetBlogPostsResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/discriminator-one-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = ({ type Baz (line 13) | type Baz = Qux; type Bar (line 15) | type Bar = Qux; type Spæcial (line 17) | type Spæcial = Qux; type Qux (line 19) | type Qux = { type Quux (line 24) | type Quux = 'Bar' | 'Baz'; type Quuz (line 26) | type Quuz = ({ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-escape/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = 'foo\'bar' | 'foo"bar'; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-inline-javascript/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type TypeEnum (line 19) | type TypeEnum = typeof TypeEnum[keyof typeof TypeEnum]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-inline-name-resolver-null/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type TypeEnum (line 19) | type TypeEnum = typeof TypeEnum[keyof typeof TypeEnum]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-inline-name-resolver/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type TypeEnum (line 19) | type TypeEnum = typeof TypeEnum[keyof typeof TypeEnum]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-inline-typescript/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type TypeEnum (line 11) | enum TypeEnum { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-inline/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type TypeEnum (line 11) | type TypeEnum = 'foo' | 'bar' | 'FooBar' | 'fooBar' | 'foo bar'; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-PascalCase/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 28) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 39) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 47) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-SCREAMING_SNAKE_CASE/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 28) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 39) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 47) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-camelCase/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 28) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 39) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 47) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-ignore-null/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 27) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 38) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 46) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-preserve/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 28) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 39) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 47) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-javascript-snake_case/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 9) | type _110 = typeof _110[keyof typeof _110]; type MyFoo (line 13) | type MyFoo = typeof MyFoo[keyof typeof MyFoo]; type MyFoo2 (line 17) | type MyFoo2 = typeof MyFoo2[keyof typeof MyFoo2]; type Foo (line 28) | type Foo = typeof Foo[keyof typeof Foo]; type Numbers (line 39) | type Numbers = typeof Numbers[keyof typeof Numbers]; type Arrays (line 47) | type Arrays = typeof Arrays[keyof typeof Arrays]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-PascalCase/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | enum _110 { type MyFoo (line 12) | enum MyFoo { type MyFoo2 (line 17) | enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-SCREAMING_SNAKE_CASE/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | enum _110 { type MyFoo (line 12) | enum MyFoo { type MyFoo2 (line 17) | enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-camelCase/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | enum _110 { type MyFoo (line 12) | enum MyFoo { type MyFoo2 (line 17) | enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-const/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | const enum _110 { type MyFoo (line 12) | const enum MyFoo { type MyFoo2 (line 17) | const enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | const enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-preserve/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | enum _110 { type MyFoo (line 12) | enum MyFoo { type MyFoo2 (line 17) | enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values-typescript-snake_case/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | enum _110 { type MyFoo (line 12) | enum MyFoo { type MyFoo2 (line 17) | enum MyFoo2 { type Foo (line 22) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 24) | enum Numbers { type Arrays (line 33) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-names-values/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _110 (line 7) | type _110 = '1-10' | '11-20'; type MyFoo (line 9) | type MyFoo = 'myFoo' | 'myBar'; type MyFoo2 (line 11) | type MyFoo2 = 'MyFoo' | 'MyBar'; type Foo (line 13) | type Foo = 'foo' | 'bar' | null | '' | true | false; type Numbers (line 15) | type Numbers = 100 | 200 | 300 | -100 | -200 | -300; type Arrays (line 17) | type Arrays = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/enum-null/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = 'foo' | 'bar' | null; type Bar (line 9) | type Bar = 'foo' | 'bar'; type Baz (line 11) | type Baz = 'foo' | 'bar'; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/exclude-deprecated/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = string; type PostFooData (line 9) | type PostFooData = { type PostFooResponses (line 16) | type PostFooResponses = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/external/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _1 (line 7) | type _1 = string; type ExternalSchemaA (line 9) | type ExternalSchemaA = ExternalSharedModel; type ExternalSchemaB (line 11) | type ExternalSchemaB = ExternalSharedModel; type ExternalSchemaC (line 13) | type ExternalSchemaC = ExternalSharedModel; type ExternalSchemaPathA (line 15) | type ExternalSchemaPathA = ExternalSharedModel; type ExternalSchemaPathB (line 17) | type ExternalSchemaPathB = ExternalSharedModel; type ExternalSchemaPropertyA (line 22) | type ExternalSchemaPropertyA = { type ExternalSchemaPropertyB (line 29) | type ExternalSchemaPropertyB = { type ExternalSchemaPropertyC (line 36) | type ExternalSchemaPropertyC = { type ExternalSchemaPropertyD (line 43) | type ExternalSchemaPropertyD = { type ExternalSchemaExternalProp (line 51) | type ExternalSchemaExternalProp = { type ExternalSchemaExternalPropAlias (line 59) | type ExternalSchemaExternalPropAlias = { type ExternalDoubleNestedProp (line 67) | type ExternalDoubleNestedProp = { type ExternalDoubleNestedNumeric (line 75) | type ExternalDoubleNestedNumeric = { type ExternalNestedObjectA (line 80) | type ExternalNestedObjectA = ExternalNested; type ExternalNestedObjectB (line 82) | type ExternalNestedObjectB = ExternalNested; type ExternalNestedNumericObjectA (line 84) | type ExternalNestedNumericObjectA = ExternalNestedNumeric; type ExternalNestedNumericObjectB (line 86) | type ExternalNestedNumericObjectB = ExternalNestedNumeric; type ExternalMixedProperties (line 91) | type ExternalMixedProperties = { type ExternalArraySchema (line 102) | type ExternalArraySchema = { type ExternalUnionSchema (line 110) | type ExternalUnionSchema = ExternalSharedModel | ExternalSharedModelWith... type ExternalAllOfSchema (line 115) | type ExternalAllOfSchema = ExternalSharedModel & { type ExternalAnyOfSchema (line 122) | type ExternalAnyOfSchema = ExternalNested | ExternalNestedNumeric; type ExternalNested (line 124) | type ExternalNested = { type Deep (line 130) | type Deep = string; type ExternalNestedNumeric (line 132) | type ExternalNestedNumeric = { type ExternalSharedModel (line 138) | type ExternalSharedModel = { type Id (line 143) | type Id = string; type Name (line 145) | type Name = string; type ExternalSharedModelWithUuid (line 147) | type ExternalSharedModelWithUuid = string; type ExternalIdParam (line 149) | type ExternalIdParam = Id; type ExternalUuidParam (line 151) | type ExternalUuidParam = ExternalSharedModelWithUuid; type ExternalDeepParam (line 153) | type ExternalDeepParam = Deep; type ExternalNumericParam (line 155) | type ExternalNumericParam = _1; type ExternalModelBody (line 157) | type ExternalModelBody = ExternalSharedModel; type ExternalUuidBody (line 159) | type ExternalUuidBody = ExternalSharedModelWithUuid; type ExternalNestedBody (line 161) | type ExternalNestedBody = ExternalNested; type ExternalMixedBody (line 166) | type ExternalMixedBody = { type GetExternalModelData (line 173) | type GetExternalModelData = { type GetExternalModelErrors (line 184) | type GetExternalModelErrors = { type GetExternalModelError (line 191) | type GetExternalModelError = GetExternalModelErrors[keyof GetExternalMod... type GetExternalModelResponses (line 193) | type GetExternalModelResponses = { type GetExternalModelResponse (line 200) | type GetExternalModelResponse = GetExternalModelResponses[keyof GetExter... type PostExternalModelData (line 202) | type PostExternalModelData = { type PostExternalModelErrors (line 212) | type PostExternalModelErrors = { type PostExternalModelError (line 219) | type PostExternalModelError = PostExternalModelErrors[keyof PostExternal... type PostExternalModelResponses (line 221) | type PostExternalModelResponses = { type PostExternalModelResponse (line 228) | type PostExternalModelResponse = PostExternalModelResponses[keyof PostEx... type GetExternalUuidData (line 230) | type GetExternalUuidData = { type GetExternalUuidResponses (line 239) | type GetExternalUuidResponses = { type GetExternalUuidResponse (line 246) | type GetExternalUuidResponse = GetExternalUuidResponses[keyof GetExterna... type PutExternalUuidData (line 248) | type PutExternalUuidData = { type PutExternalUuidResponses (line 258) | type PutExternalUuidResponses = { type PutExternalUuidResponse (line 265) | type PutExternalUuidResponse = PutExternalUuidResponses[keyof PutExterna... type GetExternalNestedData (line 267) | type GetExternalNestedData = { type GetExternalNestedResponses (line 277) | type GetExternalNestedResponses = { type GetExternalNestedResponse (line 284) | type GetExternalNestedResponse = GetExternalNestedResponses[keyof GetExt... type PostExternalNestedData (line 286) | type PostExternalNestedData = { type PostExternalNestedResponses (line 296) | type PostExternalNestedResponses = { type PostExternalNestedResponse (line 303) | type PostExternalNestedResponse = PostExternalNestedResponses[keyof Post... type GetExternalMixedData (line 305) | type GetExternalMixedData = { type GetExternalMixedResponses (line 320) | type GetExternalMixedResponses = { type GetExternalMixedResponse (line 327) | type GetExternalMixedResponse = GetExternalMixedResponses[keyof GetExter... type PostExternalMixedData (line 329) | type PostExternalMixedData = { type PostExternalMixedResponses (line 339) | type PostExternalMixedResponses = { type PostExternalMixedResponse (line 346) | type PostExternalMixedResponse = PostExternalMixedResponses[keyof PostEx... type GetExternalArrayData (line 348) | type GetExternalArrayData = { type GetExternalArrayResponses (line 355) | type GetExternalArrayResponses = { type GetExternalArrayResponse (line 362) | type GetExternalArrayResponse = GetExternalArrayResponses[keyof GetExter... type PostExternalArrayData (line 364) | type PostExternalArrayData = { type PostExternalArrayResponses (line 371) | type PostExternalArrayResponses = { type PostExternalArrayResponse (line 378) | type PostExternalArrayResponse = PostExternalArrayResponses[keyof PostEx... type GetExternalUnionData (line 380) | type GetExternalUnionData = { type GetExternalUnionResponses (line 387) | type GetExternalUnionResponses = { type GetExternalUnionResponse (line 394) | type GetExternalUnionResponse = GetExternalUnionResponses[keyof GetExter... type PostExternalUnionData (line 396) | type PostExternalUnionData = { type PostExternalUnionResponses (line 403) | type PostExternalUnionResponses = { type PostExternalUnionResponse (line 410) | type PostExternalUnionResponse = PostExternalUnionResponses[keyof PostEx... type GetExternalPropertiesByIdData (line 412) | type GetExternalPropertiesByIdData = { type GetExternalPropertiesByIdResponses (line 426) | type GetExternalPropertiesByIdResponses = { type GetExternalPropertiesByIdResponse (line 436) | type GetExternalPropertiesByIdResponse = GetExternalPropertiesByIdRespon... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/internal-name-conflict/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false-axios/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/parameter-explode-false/sdk.gen.ts type Options (line 7) | type Options(options?: Options<... method patchApiVbyApiVersionNoTag (line 21) | public patchApiVbyApiVersionNoTag(options: Options(options?: Options<... method getApiVbyApiVersionSimpleOperation (line 48) | public getApiVbyApiVersionSimpleOperation(options?: Options(options: Option... method callWithParameters (line 165) | public callWithParameters(option... method callWithWeirdParameterNames (line 174) | public callWithWeirdParameterNames(... method postCallWithOptionalParam (line 192) | public postCallWithOptionalParam... class DescriptionsServiceRequests (line 203) | class DescriptionsServiceRequests { method callWithDescriptions (line 204) | public callWithDescriptions(opti... class DeprecatedServiceRequests (line 215) | class DeprecatedServiceRequests { method deprecatedCall (line 219) | public deprecatedCall(options: O... class RequestBodyServiceRequests (line 230) | class RequestBodyServiceRequests { method postApiVbyApiVersionRequestBody (line 231) | public postApiVbyApiVersionRequestBody... method callWithDefaultOptionalParameters (line 264) | public callWithDefaultOptionalParameters(o... class DuplicateServiceRequests (line 284) | class DuplicateServiceRequests { method duplicateName (line 285) | public duplicateName(options?: O... method duplicateName2 (line 294) | public duplicateName2(options?: ... method duplicateName3 (line 303) | public duplicateName3(options?: ... method duplicateName4 (line 312) | public duplicateName4(options?: ... class NoContentServiceRequests (line 323) | class NoContentServiceRequests { method callWithNoContentResponse (line 324) | public callWithNoContentResponse... method callWithResponseAndNoContentResponse (line 333) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 363) | public callWithDuplicateResponses(options... class MultipleTags1ServiceRequests (line 383) | class MultipleTags1ServiceRequests { method dummyA (line 384) | public dummyA(options?: Options<... method dummyB (line 393) | public dummyB(options?: Options<... class MultipleTags2ServiceRequests (line 404) | class MultipleTags2ServiceRequests { method dummyA (line 405) | public dummyA(options?: Options<... method dummyB (line 414) | public dummyB(options?: Options<... class MultipleTags3ServiceRequests (line 425) | class MultipleTags3ServiceRequests { method dummyB (line 426) | public dummyB(options?: Options<... class CollectionFormatServiceRequests (line 437) | class CollectionFormatServiceRequests { method collectionFormat (line 438) | public collectionFormat(options:... class TypesServiceRequests (line 449) | class TypesServiceRequests { method types (line 450) | public types(options: Options(options: Optio... class FileResponseServiceRequests (line 473) | class FileResponseServiceRequests { method fileResponse (line 474) | public fileResponse(options: Opt... class ComplexServiceRequests (line 485) | class ComplexServiceRequests { method complexTypes (line 486) | public complexTypes(options: Opt... method complexParams (line 495) | public complexParams(options: Op... class MultipartServiceRequests (line 506) | class MultipartServiceRequests { method multipartResponse (line 507) | public multipartResponse(options... method multipartRequest (line 516) | public multipartRequest(options?... class HeaderServiceRequests (line 527) | class HeaderServiceRequests { method callWithResultFromHeader (line 528) | public callWithResultFromHeader(... class ErrorServiceRequests (line 539) | class ErrorServiceRequests { method testErrorCode (line 540) | public testErrorCode(options: Op... class NonAsciiÆøåÆøÅöôêÊServiceRequests (line 551) | class NonAsciiÆøåÆøÅöôêÊServiceRequests { method nonAsciiæøåÆøÅöôêÊ字符串 (line 552) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... method putWithFormUrlEncoded (line 564) | public putWithFormUrlEncoded(opt... class DefaultServiceResources (line 575) | class DefaultServiceResources { method export (line 576) | public export(options?: () => Op... method patchApiVbyApiVersionNoTag (line 583) | public patchApiVbyApiVersionNoTag(options: () => Opt... method fooWow (line 597) | public fooWow(options?: () => Op... method getApiVbyApiVersionSimpleOperation (line 604) | public getApiVbyApiVersionSimpleOperation(options?: () => Opt... class VVersionService2 (line 621) | class VVersionService2 { method oDataControllerService (line 623) | get oDataControllerService(): ODataControllerService2 { class ApiService2 (line 628) | class ApiService2 { method vVersionService (line 630) | get vVersionService(): VVersionService2 { class SimpleServiceResources (line 636) | class SimpleServiceResources { method deleteCallWithoutParametersAndResponse (line 637) | public deleteCallWithoutParametersAndResponse(options: () => ... method callWithParameters (line 701) | public callWithParameters(option... method callWithWeirdParameterNames (line 708) | public callWithWeirdParameterNames(... method postCallWithOptionalParam (line 722) | public postCallWithOptionalParam... class DescriptionsServiceResources (line 731) | class DescriptionsServiceResources { method callWithDescriptions (line 732) | public callWithDescriptions(opti... class DeprecatedServiceResources (line 741) | class DeprecatedServiceResources { method deprecatedCall (line 745) | public deprecatedCall(options: (... class RequestBodyServiceResources (line 754) | class RequestBodyServiceResources { method postApiVbyApiVersionRequestBody (line 755) | public postApiVbyApiVersionRequestBody... method callWithDefaultOptionalParameters (line 782) | public callWithDefaultOptionalParameters(o... class DuplicateServiceResources (line 798) | class DuplicateServiceResources { method duplicateName (line 799) | public duplicateName(options?: (... method duplicateName2 (line 806) | public duplicateName2(options?: ... method duplicateName3 (line 813) | public duplicateName3(options?: ... method duplicateName4 (line 820) | public duplicateName4(options?: ... class NoContentServiceResources (line 829) | class NoContentServiceResources { method callWithNoContentResponse (line 830) | public callWithNoContentResponse... method callWithResponseAndNoContentResponse (line 837) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 861) | public callWithDuplicateResponses(options... class MultipleTags1ServiceResources (line 877) | class MultipleTags1ServiceResources { method dummyA (line 878) | public dummyA(options?: () => Op... method dummyB (line 885) | public dummyB(options?: () => Op... class MultipleTags2ServiceResources (line 894) | class MultipleTags2ServiceResources { method dummyA (line 895) | public dummyA(options?: () => Op... method dummyB (line 902) | public dummyB(options?: () => Op... class MultipleTags3ServiceResources (line 911) | class MultipleTags3ServiceResources { method dummyB (line 912) | public dummyB(options?: () => Op... class CollectionFormatServiceResources (line 921) | class CollectionFormatServiceResources { method collectionFormat (line 922) | public collectionFormat(options:... class TypesServiceResources (line 931) | class TypesServiceResources { method types (line 932) | public types(options: () => Opti... class UploadServiceResources (line 941) | class UploadServiceResources { method uploadFile (line 942) | public uploadFile(options: () =>... class FileResponseServiceResources (line 951) | class FileResponseServiceResources { method fileResponse (line 952) | public fileResponse(options: () ... class ComplexServiceResources (line 961) | class ComplexServiceResources { method complexTypes (line 962) | public complexTypes(options: () ... method complexParams (line 969) | public complexParams(options: ()... class MultipartServiceResources (line 978) | class MultipartServiceResources { method multipartResponse (line 979) | public multipartResponse(options... method multipartRequest (line 986) | public multipartRequest(options?... class HeaderServiceResources (line 995) | class HeaderServiceResources { method callWithResultFromHeader (line 996) | public callWithResultFromHeader(... class ErrorServiceResources (line 1005) | class ErrorServiceResources { method testErrorCode (line 1006) | public testErrorCode(options: ()... class NonAsciiÆøåÆøÅöôêÊServiceResources (line 1015) | class NonAsciiÆøåÆøÅöôêÊServiceResources { method nonAsciiæøåÆøÅöôêÊ字符串 (line 1016) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... method putWithFormUrlEncoded (line 1026) | public putWithFormUrlEncoded(opt... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default-class/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@angular/common/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Domains (line 49) | class Domains extends HeyApiClient { method get (line 50) | public get(options?: Options(options?: Options(options?: Options(options?: Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/sdk.gen.ts type Options (line 7) | type Options(options?: Opti... method post (line 26) | public static post(options?: Opt... class Providers (line 31) | class Providers { class Business (line 35) | class Business { method get (line 36) | public static get(options?: Opti... class Business2 (line 43) | class Business2 { class Domains2 (line 47) | class Domains2 { method get (line 48) | public static get(options?: Opti... method post (line 52) | public static post(options?: Opt... class Providers2 (line 57) | class Providers2 { class Business3 (line 61) | class Business3 { class Providers3 (line 65) | class Providers3 { class Domains3 (line 69) | class Domains3 { method get (line 70) | public static get(options?: Opti... method post (line 74) | public static post(options?: Opt... class Providers4 (line 79) | class Providers4 { class Business4 (line 83) | class Business4 { class Domains4 (line 87) | class Domains4 { method putBusinessProvidersDomains (line 88) | public static putBusinessProvidersDomains(options?: Opti... class Locations (line 101) | class Locations { method get (line 102) | public static get(options?: Opti... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/client-fetch/sdk-nested-classes/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BusinessProvidersDomainsGetData (line 7) | type BusinessProvidersDomainsGetData = { type BusinessProvidersDomainsGetResponses (line 14) | type BusinessProvidersDomainsGetResponses = { type BusinessProvidersDomainsGetResponse (line 21) | type BusinessProvidersDomainsGetResponse = BusinessProvidersDomainsGetRe... type BusinessProvidersDomainsPostData (line 23) | type BusinessProvidersDomainsPostData = { type BusinessProvidersDomainsPostResponses (line 30) | type BusinessProvidersDomainsPostResponses = { type BusinessProvidersDomainsPostResponse (line 37) | type BusinessProvidersDomainsPostResponse = BusinessProvidersDomainsPost... type PutBusinessProvidersDomainsData (line 39) | type PutBusinessProvidersDomainsData = { type PutBusinessProvidersDomainsResponses (line 46) | type PutBusinessProvidersDomainsResponses = { type PutBusinessProvidersDomainsResponse (line 53) | type PutBusinessProvidersDomainsResponse = PutBusinessProvidersDomainsRe... type BusinessGetData (line 55) | type BusinessGetData = { type BusinessGetResponses (line 62) | type BusinessGetResponses = { type BusinessGetResponse (line 69) | type BusinessGetResponse = BusinessGetResponses[keyof BusinessGetRespons... type GetData (line 71) | type GetData = { type GetResponses (line 78) | type GetResponses = { type GetResponse (line 85) | type GetResponse = GetResponses[keyof GetResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Bar (line 49) | class Bar extends HeyApiClient { method post (line 50) | public post(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options<... method getFooBar (line 89) | public getFooBar(options?: Optio... method foo (line 94) | get foo(): Foo { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/instance/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/sdk/throwOnError/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Baz (line 7) | type Baz = { type QuxAllRead (line 11) | type QuxAllRead = { type ReadableFooReadWrite (line 15) | type ReadableFooReadWrite = ReadableBarRead; type WritableFooReadWrite (line 17) | type WritableFooReadWrite = WritableBarRead & { type ReadableFooRead (line 21) | type ReadableFooRead = ReadableBarRead & { type WritableFooRead (line 25) | type WritableFooRead = WritableBarRead; type ReadableFooWrite (line 27) | type ReadableFooWrite = ReadableBarWrite; type WritableFooWrite (line 29) | type WritableFooWrite = WritableBarWrite & { type ReadableBarRead (line 33) | type ReadableBarRead = Baz | { type WritableBarRead (line 37) | type WritableBarRead = Baz; type ReadableBarWrite (line 39) | type ReadableBarWrite = Baz; type WritableBarWrite (line 41) | type WritableBarWrite = Baz | { type ReadableQuux (line 45) | type ReadableQuux = { type WritableQuux (line 50) | type WritableQuux = { type ReadableCorge (line 54) | type ReadableCorge = { type WritableCorge (line 60) | type WritableCorge = { type PostFooReadWriteData (line 66) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 73) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 80) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 82) | type PostFooReadData = { type PostFooReadResponses (line 89) | type PostFooReadResponses = { type PostFooReadResponse (line 96) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 98) | type PostFooWriteData = { type PostFooWriteResponses (line 105) | type PostFooWriteResponses = { type PostFooWriteResponse (line 112) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@hey-api/typescript/transforms-read-write-ignore/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooReadWrite (line 7) | type FooReadWrite = BarRead & { type FooRead (line 11) | type FooRead = BarRead & { type FooWrite (line 15) | type FooWrite = BarWrite & { type BarRead (line 19) | type BarRead = Baz | { type BarWrite (line 23) | type BarWrite = Baz | { type Baz (line 27) | type Baz = { type QuxAllRead (line 31) | type QuxAllRead = { type Quux (line 35) | type Quux = { type Corge (line 40) | type Corge = { type PostFooReadWriteData (line 49) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 56) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 63) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 65) | type PostFooReadData = { type PostFooReadResponses (line 72) | type PostFooReadResponses = { type PostFooReadResponse (line 79) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 81) | type PostFooWriteData = { type PostFooWriteResponses (line 88) | type PostFooWriteResponses = { type PostFooWriteResponse (line 95) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@pinia/colada/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/angular-query-experimental/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/@tanstack/preact-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/preact-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/@tanstack/react-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/react-query/useMutation/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/@tanstack/solid-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/solid-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/@tanstack/svelte-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/svelte-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/@tanstack/vue-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/plugins/@tanstack/vue-query/name-builder/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-api-key/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-false/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-http-bearer/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-oauth2/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/security-open-id-connect/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/servers/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-all-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = { type Baz (line 16) | type Baz = Omit & { type Qux (line 24) | type Qux = { type GetFooData (line 31) | type GetFooData = { type GetFooResponses (line 38) | type GetFooResponses = { type GetFooResponse (line 45) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-allof-response-wrapper/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type PaginatedResponse (line 7) | type PaginatedResponse = { type RepositorySecret (line 16) | type RepositorySecret = { type ListSecretsData (line 23) | type ListSecretsData = { type ListSecretsResponses (line 30) | type ListSecretsResponses = { type ListSecretsResponse (line 41) | type ListSecretsResponse = ListSecretsResponses[keyof ListSecretsRespons... type CreateSecretData (line 43) | type CreateSecretData = { type CreateSecretResponses (line 50) | type CreateSecretResponses = { type CreateSecretResponse (line 57) | type CreateSecretResponse = CreateSecretResponses[keyof CreateSecretResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-any-of-null/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Poll (line 7) | type Poll = { type Foo (line 12) | type Foo = { type GetFooData (line 18) | type GetFooData = { type GetFooResponses (line 25) | type GetFooResponses = { type GetFooResponse (line 32) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type GetPollData (line 34) | type GetPollData = { type GetPollResponses (line 41) | type GetPollResponses = { type GetPollResponse (line 48) | type GetPollResponse = GetPollResponses[keyof GetPollResponses]; type GetNullablePollData (line 50) | type GetNullablePollData = { type GetNullablePollResponses (line 57) | type GetNullablePollResponses = { type GetNullablePollResponse (line 64) | type GetNullablePollResponse = GetNullablePollResponses[keyof GetNullabl... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-array/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 25) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transformers-recursive/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type TreeNode (line 7) | type TreeNode = { type GetTreeData (line 14) | type GetTreeData = { type GetTreeResponses (line 21) | type GetTreeResponses = { type GetTreeResponse (line 28) | type GetTreeResponse = GetTreeResponses[keyof GetTreeResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-properties-required-by-default/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Address (line 7) | type Address = { type AllocatedDeliveryItem (line 22) | type AllocatedDeliveryItem = { type AllocatedPreOrderItem (line 31) | type AllocatedPreOrderItem = { type AnonymousTransaction (line 42) | type AnonymousTransaction = { type AppliedDiscount (line 60) | type AppliedDiscount = { type AssignPlantsToGroupRequest (line 104) | type AssignPlantsToGroupRequest = { type BadRequestPropertyError (line 118) | type BadRequestPropertyError = { type BadRequestResponse (line 132) | type BadRequestResponse = { type BatchDetails (line 146) | type BatchDetails = { type BooleanNullableOptional (line 181) | type BooleanNullableOptional = boolean; type BooleanOptional (line 183) | type BooleanOptional = boolean; type Brand (line 185) | type Brand = { type BrandEditRequest (line 191) | type BrandEditRequest = { type BroadcastedResponses (line 196) | type BroadcastedResponses = { type BulkCreateOrUpdateHarvest (line 200) | type BulkCreateOrUpdateHarvest = { type BulkCreateOrUpdateHarvestResponse (line 204) | type BulkCreateOrUpdateHarvestResponse = { type BulkHarvestDetail (line 209) | type BulkHarvestDetail = { type CalculationMethod (line 217) | type CalculationMethod = 1 | 2 | 3 | 4 | 5 | 6 | 15; type CancelPreorderRequest (line 222) | type CancelPreorderRequest = { type CannabinoidTerpeneValue (line 236) | type CannabinoidTerpeneValue = { type CartItemPrice (line 251) | type CartItemPrice = { type CartPrice (line 261) | type CartPrice = { type ChangeGrowthPhaseRequest (line 290) | type ChangeGrowthPhaseRequest = { type ClosingReportCategorySummary (line 308) | type ClosingReportCategorySummary = { type ClosingReportCustomerTypeSummary (line 338) | type ClosingReportCustomerTypeSummary = { type ClosingReportOrderSourceSummary (line 376) | type ClosingReportOrderSourceSummary = { type ClosingReportOrderTypeSummary (line 403) | type ClosingReportOrderTypeSummary = { type ClosingReportPayByBankBatchFileSums (line 433) | type ClosingReportPayByBankBatchFileSums = { type ClosingReportPaymentSummary (line 447) | type ClosingReportPaymentSummary = { type ClosingReportTaxRateSummary (line 461) | type ClosingReportTaxRateSummary = { type ClosingReportV2 (line 475) | type ClosingReportV2 = { type ConvertBatchDetails (line 548) | type ConvertBatchDetails = { type ConvertImmatureBatchRequest (line 578) | type ConvertImmatureBatchRequest = { type ConvertImmaturePlantResponse (line 588) | type ConvertImmaturePlantResponse = { type ConvertImmaturePlantResponseApiResult (line 595) | type ConvertImmaturePlantResponseApiResult = { type CreateAnonymousTransactionRequest (line 604) | type CreateAnonymousTransactionRequest = { type CreateImmaturePlantBatchResponse (line 614) | type CreateImmaturePlantBatchResponse = { type CreateImmaturePlantBatchResponseApiResult (line 621) | type CreateImmaturePlantBatchResponseApiResult = { type CreateJournalEntryRequest (line 630) | type CreateJournalEntryRequest = { type CreateMatureBatchRequest (line 652) | type CreateMatureBatchRequest = { type CreateMaturePlantsResponse (line 662) | type CreateMaturePlantsResponse = { type CreateMaturePlantsResponseApiResult (line 669) | type CreateMaturePlantsResponseApiResult = { type CreateOrUpdateHarvest (line 675) | type CreateOrUpdateHarvest = { type CreatePlantRequest (line 683) | type CreatePlantRequest = { type CreatePreOrderRequest (line 697) | type CreatePreOrderRequest = { type CreateUpdatePurchaseOrderItemRequest (line 721) | type CreateUpdatePurchaseOrderItemRequest = { type CreateUpdatePurchaseOrderRequest (line 729) | type CreateUpdatePurchaseOrderRequest = { type CreateUpdatePurchaseOrderResponse (line 742) | type CreateUpdatePurchaseOrderResponse = { type CreateUpdatePurchaseOrdersRequest (line 747) | type CreateUpdatePurchaseOrdersRequest = { type CreatedImmaturePlantBatch (line 754) | type CreatedImmaturePlantBatch = { type CreatedMaturePlant (line 765) | type CreatedMaturePlant = { type Customer (line 774) | type Customer = { type CustomerSearchRequest (line 946) | type CustomerSearchRequest = { type CustomerSearchResult (line 976) | type CustomerSearchResult = { type CustomerType (line 1152) | type CustomerType = { type DateTimeNullableOptional (line 1171) | type DateTimeNullableOptional = string; type DecimalNullableOptional (line 1173) | type DecimalNullableOptional = number; type DeleteImageRequest (line 1178) | type DeleteImageRequest = { type DeliveryOrderStatus (line 1189) | type DeliveryOrderStatus = { type DeliveryPayment (line 1218) | type DeliveryPayment = { type DeliveryScheduleType (line 1223) | type DeliveryScheduleType = 1 | 2; type Discount (line 1225) | type Discount = { type DiscountApiResponse (line 1231) | type DiscountApiResponse = { type DiscountApplicationMethod (line 1262) | type DiscountApplicationMethod = 1 | 2 | 3 | 4 | 5 | 6; type DiscountConstraintApiResponse (line 1264) | type DiscountConstraintApiResponse = { type DiscountFirstTimeCustomer (line 1279) | type DiscountFirstTimeCustomer = 0 | 1 | 2; type DiscountGroup (line 1284) | type DiscountGroup = { type DiscountItemGroupType (line 1295) | type DiscountItemGroupType = 5 | 6; type DiscountMenuDisplayApiResponse (line 1297) | type DiscountMenuDisplayApiResponse = { type DiscountPaymentRestrictionApiResponse (line 1304) | type DiscountPaymentRestrictionApiResponse = { type DiscountRestriction (line 1311) | type DiscountRestriction = { type DiscountRewardApiResponse (line 1322) | type DiscountRewardApiResponse = { type DiscountThresholdType (line 1343) | type DiscountThresholdType = 1 | 2 | 3; type DriverDetail (line 1345) | type DriverDetail = { type EcomCustomerEdit (line 1355) | type EcomCustomerEdit = { type Employee (line 1477) | type Employee = { type FeeDonation (line 1492) | type FeeDonation = { type FeeDonationInfo (line 1510) | type FeeDonationInfo = { type FinishOrUnfinishBatchDetails (line 1529) | type FinishOrUnfinishBatchDetails = { type GuestListEntry (line 1534) | type GuestListEntry = { type Harvest (line 1548) | type Harvest = { type HarvestPlantRequest (line 1580) | type HarvestPlantRequest = { type HarvestWasteDetail (line 1598) | type HarvestWasteDetail = { type HarvestWasteDetailWaste (line 1620) | type HarvestWasteDetailWaste = { type HarvestedPlant (line 1667) | type HarvestedPlant = { type IRestrictionApiResponse (line 1678) | type IRestrictionApiResponse = { type Int32iEnumerableOptional (line 1682) | type Int32iEnumerableOptional = Array; type Int32NullableOptional (line 1684) | type Int32NullableOptional = number; type IntegratedPayment (line 1689) | type IntegratedPayment = { type InventoryDiscrepancy (line 1704) | type InventoryDiscrepancy = { type InventoryIntegrationReconResponse (line 1726) | type InventoryIntegrationReconResponse = { type InventoryItem (line 1734) | type InventoryItem = { type InventoryRoomQuantity (line 1952) | type InventoryRoomQuantity = { type InventorySnapshot (line 1970) | type InventorySnapshot = { type InventoryTag (line 2037) | type InventoryTag = { type InventoryTransaction (line 2046) | type InventoryTransaction = { type JournalEntry (line 2153) | type JournalEntry = { type LabResult (line 2175) | type LabResult = { type LabResultUnit (line 2191) | type LabResultUnit = 1 | 2 | 3 | 4 | 5 | 6; type LabResultUnitData (line 2196) | type LabResultUnitData = { type LineItemTaxInfo (line 2210) | type LineItemTaxInfo = { type Lineage (line 2233) | type Lineage = { type LocationIdentity (line 2247) | type LocationIdentity = { type LocationMapping (line 2323) | type LocationMapping = { type LocationProductOverride (line 2330) | type LocationProductOverride = { type LocationProductOverrideRequest (line 2342) | type LocationProductOverrideRequest = { type LocationResponse (line 2357) | type LocationResponse = { type LoyaltySnapshot (line 2374) | type LoyaltySnapshot = { type ManualPayment (line 2400) | type ManualPayment = { type MatureBatchDetails (line 2414) | type MatureBatchDetails = { type MovePlantRequest (line 2459) | type MovePlantRequest = { type ObjectWaste (line 2477) | type ObjectWaste = { type PackageLineage (line 2521) | type PackageLineage = { type Plant (line 2544) | type Plant = { type PlantWasteDetail (line 2582) | type PlantWasteDetail = { type PlantWasteDetailWaste (line 2604) | type PlantWasteDetailWaste = { type PostImmatureBatchRequest (line 2646) | type PostImmatureBatchRequest = { type PreOrderItem (line 2653) | type PreOrderItem = { type PreOrderRedemption (line 2658) | type PreOrderRedemption = { type PreOrderRedemptionIEnumerableOptional (line 2666) | type PreOrderRedemptionIEnumerableOptional = Array; type PreOrderStatus (line 2668) | type PreOrderStatus = { type PrecartItem (line 2688) | type PrecartItem = { type PriceCartRequest (line 2696) | type PriceCartRequest = { type PriceEstimates (line 2735) | type PriceEstimates = { type PricingDetail (line 2746) | type PricingDetail = { type PricingTier (line 2761) | type PricingTier = { type PricingTierData (line 2766) | type PricingTierData = { type Producer (line 2776) | type Producer = { type ProductCategory (line 2790) | type ProductCategory = { type ProductDetail (line 2805) | type ProductDetail = { type ProductDetailUpload (line 2907) | type ProductDetailUpload = { type ProductEffect (line 3014) | type ProductEffect = { type ProductTag (line 3020) | type ProductTag = { type PublishedDiscount (line 3029) | type PublishedDiscount = { type PurchaseOrderData (line 3110) | type PurchaseOrderData = { type PurchaseOrderItemDetail (line 3127) | type PurchaseOrderItemDetail = { type ReceiveInventoryItemSave (line 3143) | type ReceiveInventoryItemSave = { type ReceiveInventorySave (line 3253) | type ReceiveInventorySave = { type ReceivedInventory (line 3307) | type ReceivedInventory = { type ReceivedInventoryItem (line 3349) | type ReceivedInventoryItem = { type RegisterAdjustment (line 3423) | type RegisterAdjustment = { type RegisterCashSummary (line 3483) | type RegisterCashSummary = { type RegisterTransaction (line 3533) | type RegisterTransaction = { type RegulatoryCategory (line 3594) | type RegulatoryCategory = { type ReportingDiscountDetail (line 3608) | type ReportingDiscountDetail = { type ReportingInventoryItem (line 3716) | type ReportingInventoryItem = { type RetagPlantRequest (line 3942) | type RetagPlantRequest = { type RetireImmaturePlantsDetails (line 3956) | type RetireImmaturePlantsDetails = { type RetireImmaturePlantsRequest (line 3978) | type RetireImmaturePlantsRequest = { type RetirePlantRequest (line 3985) | type RetirePlantRequest = { type Room (line 4007) | type Room = { type RoomWaste (line 4055) | type RoomWaste = { type SavedReceive (line 4093) | type SavedReceive = { type SetImageRequest (line 4103) | type SetImageRequest = { type SetImageResponse (line 4126) | type SetImageResponse = { type Severity (line 4137) | type Severity = 0 | 1 | 2; type Size (line 4142) | type Size = { type SplitBatchDetails (line 4157) | type SplitBatchDetails = { type SplitImmaturePlantResult (line 4166) | type SplitImmaturePlantResult = { type SplitImmaturePlantResultApiResult (line 4171) | type SplitImmaturePlantResultApiResult = { type SplitImmaturePlantResultDetail (line 4177) | type SplitImmaturePlantResultDetail = { type SplitImmaturePlantsRequest (line 4187) | type SplitImmaturePlantsRequest = { type SplitPlantDetails (line 4198) | type SplitPlantDetails = { type StandardAllergensDetails (line 4206) | type StandardAllergensDetails = { type StrainDetail (line 4221) | type StrainDetail = { type StringIEnumerableOptional (line 4248) | type StringIEnumerableOptional = Array; type StringOptional (line 4250) | type StringOptional = string; type SuccessResult (line 4252) | type SuccessResult = { type Table (line 4260) | type Table = { type Tag (line 4265) | type Tag = { type TaxSummaryInfo (line 4273) | type TaxSummaryInfo = { type Terminal (line 4287) | type Terminal = { type Transaction (line 4301) | type Transaction = { type TransactionItem (line 4377) | type TransactionItem = { type Unit (line 4484) | type Unit = { type UnitType (line 4506) | type UnitType = { type UpdateBatchLabResultsRequest (line 4524) | type UpdateBatchLabResultsRequest = { type UpdateBatchRequest (line 4539) | type UpdateBatchRequest = { type UpdateDeliveryRouteDetailRequest (line 4548) | type UpdateDeliveryRouteDetailRequest = { type UpdateJournalEntryRequest (line 4578) | type UpdateJournalEntryRequest = { type UpdatePackageTagsRequest (line 4597) | type UpdatePackageTagsRequest = { type UpdatePlantDetails (line 4606) | type UpdatePlantDetails = { type UpdatePlantsRequest (line 4618) | type UpdatePlantsRequest = { type UpdatePreOrderRequest (line 4622) | type UpdatePreOrderRequest = { type UpdateStrain (line 4655) | type UpdateStrain = { type UploadFileType (line 4689) | type UploadFileType = 0 | 1 | 2 | 3 | 4 | 5; type ValidationFailure (line 4691) | type ValidationFailure = { type ValidationResult (line 4709) | type ValidationResult = { type VehicleDetail (line 4715) | type VehicleDetail = { type Vendor (line 4728) | type Vendor = { type WasteSummary (line 4774) | type WasteSummary = { type WeeklyRecurrenceInfo (line 4792) | type WeeklyRecurrenceInfo = { type AnonymousTransactionWritable (line 4834) | type AnonymousTransactionWritable = { type AppliedDiscountWritable (line 4848) | type AppliedDiscountWritable = { type BroadcastedResponsesWritable (line 4867) | type BroadcastedResponsesWritable = { type ClosingReportCategorySummaryWritable (line 4874) | type ClosingReportCategorySummaryWritable = { type ClosingReportCustomerTypeSummaryWritable (line 4900) | type ClosingReportCustomerTypeSummaryWritable = { type ClosingReportOrderSourceSummaryWritable (line 4934) | type ClosingReportOrderSourceSummaryWritable = { type ClosingReportOrderTypeSummaryWritable (line 4957) | type ClosingReportOrderTypeSummaryWritable = { type ClosingReportV2Writable (line 4983) | type ClosingReportV2Writable = { type CustomerWritable (line 5039) | type CustomerWritable = { type CustomerSearchResultWritable (line 5203) | type CustomerSearchResultWritable = { type DiscountApiResponseWritable (line 5368) | type DiscountApiResponseWritable = { type DiscountConstraintApiResponseWritable (line 5398) | type DiscountConstraintApiResponseWritable = { type DiscountRewardApiResponseWritable (line 5410) | type DiscountRewardApiResponseWritable = { type InventoryDiscrepancyWritable (line 5427) | type InventoryDiscrepancyWritable = { type InventoryIntegrationReconResponseWritable (line 5448) | type InventoryIntegrationReconResponseWritable = { type InventoryItemWritable (line 5456) | type InventoryItemWritable = { type LabResultWritable (line 5670) | type LabResultWritable = { type LineItemTaxInfoWritable (line 5685) | type LineItemTaxInfoWritable = { type LocationIdentityWritable (line 5703) | type LocationIdentityWritable = { type LocationResponseWritable (line 5772) | type LocationResponseWritable = { type PlantWritable (line 5780) | type PlantWritable = { type ProductDetailWritable (line 5814) | type ProductDetailWritable = { type ReportingInventoryItemWritable (line 5910) | type ReportingInventoryItemWritable = { type SetImageRequestWritable (line 6132) | type SetImageRequestWritable = { type TransactionWritable (line 6151) | type TransactionWritable = { type TransactionItemWritable (line 6222) | type TransactionItemWritable = { type ValidationResultWritable (line 6305) | type ValidationResultWritable = { type BatchLabResultsPostData (line 6310) | type BatchLabResultsPostData = { type BatchLabResultsPostErrors (line 6320) | type BatchLabResultsPostErrors = { type BatchLabResultsPostError (line 6343) | type BatchLabResultsPostError = BatchLabResultsPostErrors[keyof BatchLab... type BatchLabResultsPostResponses (line 6345) | type BatchLabResultsPostResponses = { type BrandGetData (line 6352) | type BrandGetData = { type BrandGetErrors (line 6359) | type BrandGetErrors = { type BrandGetResponses (line 6374) | type BrandGetResponses = { type BrandGetResponse (line 6381) | type BrandGetResponse = BrandGetResponses[keyof BrandGetResponses]; type BrandPostData (line 6383) | type BrandPostData = { type BrandPostErrors (line 6393) | type BrandPostErrors = { type BrandPostError (line 6412) | type BrandPostError = BrandPostErrors[keyof BrandPostErrors]; type BrandPostResponses (line 6414) | type BrandPostResponses = { type BrandPostResponse (line 6421) | type BrandPostResponse = BrandPostResponses[keyof BrandPostResponses]; type CustomerCustomersGetData (line 6423) | type CustomerCustomersGetData = { type CustomerCustomersGetErrors (line 6451) | type CustomerCustomersGetErrors = { type CustomerCustomersGetError (line 6474) | type CustomerCustomersGetError = CustomerCustomersGetErrors[keyof Custom... type CustomerCustomersGetResponses (line 6476) | type CustomerCustomersGetResponses = { type CustomerCustomersGetResponse (line 6483) | type CustomerCustomersGetResponse = CustomerCustomersGetResponses[keyof ... type CustomerCustomersPaginatedGetData (line 6485) | type CustomerCustomersPaginatedGetData = { type CustomerCustomersPaginatedGetErrors (line 6513) | type CustomerCustomersPaginatedGetErrors = { type CustomerCustomersPaginatedGetError (line 6532) | type CustomerCustomersPaginatedGetError = CustomerCustomersPaginatedGetE... type CustomerCustomersPaginatedGetResponses (line 6534) | type CustomerCustomersPaginatedGetResponses = { type CustomerCustomersPaginatedGetResponse (line 6541) | type CustomerCustomersPaginatedGetResponse = CustomerCustomersPaginatedG... type CustomerCustomerTypesGetData (line 6543) | type CustomerCustomerTypesGetData = { type CustomerCustomerTypesGetErrors (line 6550) | type CustomerCustomerTypesGetErrors = { type CustomerCustomerTypesGetResponses (line 6565) | type CustomerCustomerTypesGetResponses = { type CustomerCustomerTypesGetResponse (line 6572) | type CustomerCustomerTypesGetResponse = CustomerCustomerTypesGetResponse... type CustomerReferralSourcesGetData (line 6574) | type CustomerReferralSourcesGetData = { type CustomerReferralSourcesGetErrors (line 6581) | type CustomerReferralSourcesGetErrors = { type CustomerReferralSourcesGetResponses (line 6596) | type CustomerReferralSourcesGetResponses = { type CustomerReferralSourcesGetResponse (line 6603) | type CustomerReferralSourcesGetResponse = CustomerReferralSourcesGetResp... type CustomerCustomerPostData (line 6605) | type CustomerCustomerPostData = { type CustomerCustomerPostErrors (line 6626) | type CustomerCustomerPostErrors = { type CustomerCustomerPostError (line 6649) | type CustomerCustomerPostError = CustomerCustomerPostErrors[keyof Custom... type CustomerCustomerPostResponses (line 6651) | type CustomerCustomerPostResponses = { type CustomerCustomerPostResponse (line 6658) | type CustomerCustomerPostResponse = CustomerCustomerPostResponses[keyof ... type CustomerCustomerLookupPostData (line 6660) | type CustomerCustomerLookupPostData = { type CustomerCustomerLookupPostErrors (line 6667) | type CustomerCustomerLookupPostErrors = { type CustomerCustomerLookupPostError (line 6690) | type CustomerCustomerLookupPostError = CustomerCustomerLookupPostErrors[... type CustomerCustomerLookupPostResponses (line 6692) | type CustomerCustomerLookupPostResponses = { type CustomerCustomerLookupPostResponse (line 6699) | type CustomerCustomerLookupPostResponse = CustomerCustomerLookupPostResp... type CustomerSearchPostData (line 6701) | type CustomerSearchPostData = { type CustomerSearchPostErrors (line 6711) | type CustomerSearchPostErrors = { type CustomerSearchPostError (line 6730) | type CustomerSearchPostError = CustomerSearchPostErrors[keyof CustomerSe... type CustomerSearchPostResponses (line 6732) | type CustomerSearchPostResponses = { type CustomerSearchPostResponse (line 6739) | type CustomerSearchPostResponse = CustomerSearchPostResponses[keyof Cust... type CustomerByExternalIdGetData (line 6741) | type CustomerByExternalIdGetData = { type CustomerByExternalIdGetErrors (line 6750) | type CustomerByExternalIdGetErrors = { type CustomerByExternalIdGetError (line 6773) | type CustomerByExternalIdGetError = CustomerByExternalIdGetErrors[keyof ... type CustomerByExternalIdGetResponses (line 6775) | type CustomerByExternalIdGetResponses = { type CustomerByExternalIdGetResponse (line 6782) | type CustomerByExternalIdGetResponse = CustomerByExternalIdGetResponses[... type CustomerJournalGetData (line 6784) | type CustomerJournalGetData = { type CustomerJournalGetErrors (line 6796) | type CustomerJournalGetErrors = { type CustomerJournalGetError (line 6815) | type CustomerJournalGetError = CustomerJournalGetErrors[keyof CustomerJo... type CustomerJournalGetResponses (line 6817) | type CustomerJournalGetResponses = { type CustomerJournalGetResponse (line 6824) | type CustomerJournalGetResponse = CustomerJournalGetResponses[keyof Cust... type CustomerJournalUpdatePostData (line 6826) | type CustomerJournalUpdatePostData = { type CustomerJournalUpdatePostErrors (line 6836) | type CustomerJournalUpdatePostErrors = { type CustomerJournalUpdatePostError (line 6855) | type CustomerJournalUpdatePostError = CustomerJournalUpdatePostErrors[ke... type CustomerJournalUpdatePostResponses (line 6857) | type CustomerJournalUpdatePostResponses = { type CustomerJournalUpdatePostResponse (line 6864) | type CustomerJournalUpdatePostResponse = CustomerJournalUpdatePostRespon... type CustomerJournalCreatePostData (line 6866) | type CustomerJournalCreatePostData = { type CustomerJournalCreatePostErrors (line 6876) | type CustomerJournalCreatePostErrors = { type CustomerJournalCreatePostError (line 6895) | type CustomerJournalCreatePostError = CustomerJournalCreatePostErrors[ke... type CustomerJournalCreatePostResponses (line 6897) | type CustomerJournalCreatePostResponses = { type CustomerJournalCreatePostResponse (line 6904) | type CustomerJournalCreatePostResponse = CustomerJournalCreatePostRespon... type DeliveriesGetData (line 6906) | type DeliveriesGetData = { type DeliveriesGetErrors (line 6934) | type DeliveriesGetErrors = { type DeliveriesGetError (line 6953) | type DeliveriesGetError = DeliveriesGetErrors[keyof DeliveriesGetErrors]; type DeliveriesGetResponses (line 6955) | type DeliveriesGetResponses = { type DeliveriesGetResponse (line 6962) | type DeliveriesGetResponse = DeliveriesGetResponses[keyof DeliveriesGetR... type DeliveriesSetRouteDetailPostData (line 6964) | type DeliveriesSetRouteDetailPostData = { type DeliveriesSetRouteDetailPostErrors (line 6974) | type DeliveriesSetRouteDetailPostErrors = { type DeliveriesSetRouteDetailPostError (line 6993) | type DeliveriesSetRouteDetailPostError = DeliveriesSetRouteDetailPostErr... type DeliveriesSetRouteDetailPostResponses (line 6995) | type DeliveriesSetRouteDetailPostResponses = { type DiscountsGetData (line 7002) | type DiscountsGetData = { type DiscountsGetErrors (line 7018) | type DiscountsGetErrors = { type DiscountsGetResponses (line 7029) | type DiscountsGetResponses = { type DiscountsGetResponse (line 7036) | type DiscountsGetResponse = DiscountsGetResponses[keyof DiscountsGetResp... type DiscountsV2ListGetData (line 7038) | type DiscountsV2ListGetData = { type DiscountsV2ListGetErrors (line 7058) | type DiscountsV2ListGetErrors = { type DiscountsV2ListGetResponses (line 7069) | type DiscountsV2ListGetResponses = { type DiscountsV2ListGetResponse (line 7076) | type DiscountsV2ListGetResponse = DiscountsV2ListGetResponses[keyof Disc... type DriversGetData (line 7078) | type DriversGetData = { type DriversGetErrors (line 7085) | type DriversGetErrors = { type DriversGetResponses (line 7100) | type DriversGetResponses = { type DriversGetResponse (line 7107) | type DriversGetResponse = DriversGetResponses[keyof DriversGetResponses]; type DriversPostData (line 7109) | type DriversPostData = { type DriversPostErrors (line 7119) | type DriversPostErrors = { type DriversPostError (line 7138) | type DriversPostError = DriversPostErrors[keyof DriversPostErrors]; type DriversPostResponses (line 7140) | type DriversPostResponses = { type EmployeesGetData (line 7147) | type EmployeesGetData = { type EmployeesGetErrors (line 7154) | type EmployeesGetErrors = { type EmployeesGetResponses (line 7169) | type EmployeesGetResponses = { type EmployeesGetResponse (line 7176) | type EmployeesGetResponse = EmployeesGetResponses[keyof EmployeesGetResp... type GuestlistGetData (line 7178) | type GuestlistGetData = { type GuestlistGetErrors (line 7185) | type GuestlistGetErrors = { type GuestlistGetResponses (line 7200) | type GuestlistGetResponses = { type GuestlistGetResponse (line 7207) | type GuestlistGetResponse = GuestlistGetResponses[keyof GuestlistGetResp... type HarvestGetData (line 7209) | type HarvestGetData = { type HarvestGetErrors (line 7229) | type HarvestGetErrors = { type HarvestGetResponses (line 7244) | type HarvestGetResponses = { type HarvestGetResponse (line 7251) | type HarvestGetResponse = HarvestGetResponses[keyof HarvestGetResponses]; type HarvestPostData (line 7253) | type HarvestPostData = { type HarvestPostErrors (line 7263) | type HarvestPostErrors = { type HarvestPostResponses (line 7278) | type HarvestPostResponses = { type HarvestPostResponse (line 7285) | type HarvestPostResponse = HarvestPostResponses[keyof HarvestPostRespons... type HarvestBulkPostData (line 7287) | type HarvestBulkPostData = { type HarvestBulkPostErrors (line 7297) | type HarvestBulkPostErrors = { type HarvestBulkPostError (line 7316) | type HarvestBulkPostError = HarvestBulkPostErrors[keyof HarvestBulkPostE... type HarvestBulkPostResponses (line 7318) | type HarvestBulkPostResponses = { type HarvestBulkPostResponse (line 7325) | type HarvestBulkPostResponse = HarvestBulkPostResponses[keyof HarvestBul... type OkcomputerGetData (line 7327) | type OkcomputerGetData = { type OkcomputerGetErrors (line 7334) | type OkcomputerGetErrors = { type OkcomputerGetResponses (line 7341) | type OkcomputerGetResponses = { type OkcomputerGetResponse (line 7348) | type OkcomputerGetResponse = OkcomputerGetResponses[keyof OkcomputerGetR... type IntegrationIntegrationReconGetData (line 7350) | type IntegrationIntegrationReconGetData = { type IntegrationIntegrationReconGetErrors (line 7357) | type IntegrationIntegrationReconGetErrors = { type IntegrationIntegrationReconGetResponses (line 7372) | type IntegrationIntegrationReconGetResponses = { type IntegrationIntegrationReconGetResponse (line 7379) | type IntegrationIntegrationReconGetResponse = IntegrationIntegrationReco... type InventoryGetData (line 7381) | type InventoryGetData = { type InventoryGetErrors (line 7397) | type InventoryGetErrors = { type InventoryGetResponses (line 7412) | type InventoryGetResponses = { type InventoryGetResponse (line 7419) | type InventoryGetResponse = InventoryGetResponses[keyof InventoryGetResp... type InventoryLabresultsGetData (line 7421) | type InventoryLabresultsGetData = { type InventoryLabresultsGetErrors (line 7430) | type InventoryLabresultsGetErrors = { type InventoryLabresultsGetResponses (line 7445) | type InventoryLabresultsGetResponses = { type InventoryLabresultsGetResponse (line 7452) | type InventoryLabresultsGetResponse = InventoryLabresultsGetResponses[ke... type InventorySnapshotGetData (line 7454) | type InventorySnapshotGetData = { type InventorySnapshotGetErrors (line 7463) | type InventorySnapshotGetErrors = { type InventorySnapshotGetResponses (line 7478) | type InventorySnapshotGetResponses = { type InventorySnapshotGetResponse (line 7485) | type InventorySnapshotGetResponse = InventorySnapshotGetResponses[keyof ... type InventoryReceivedinventoryGetData (line 7487) | type InventoryReceivedinventoryGetData = { type InventoryReceivedinventoryGetErrors (line 7498) | type InventoryReceivedinventoryGetErrors = { type InventoryReceivedinventoryGetResponses (line 7513) | type InventoryReceivedinventoryGetResponses = { type InventoryReceivedinventoryGetResponse (line 7520) | type InventoryReceivedinventoryGetResponse = InventoryReceivedinventoryG... type InventoryInventorytransactionGetData (line 7522) | type InventoryInventorytransactionGetData = { type InventoryInventorytransactionGetErrors (line 7533) | type InventoryInventorytransactionGetErrors = { type InventoryInventorytransactionGetResponses (line 7548) | type InventoryInventorytransactionGetResponses = { type InventoryInventorytransactionGetResponse (line 7555) | type InventoryInventorytransactionGetResponse = InventoryInventorytransa... type InventoryReceiveinventoryPostData (line 7557) | type InventoryReceiveinventoryPostData = { type InventoryReceiveinventoryPostErrors (line 7567) | type InventoryReceiveinventoryPostErrors = { type InventoryReceiveinventoryPostError (line 7586) | type InventoryReceiveinventoryPostError = InventoryReceiveinventoryPostE... type InventoryReceiveinventoryPostResponses (line 7588) | type InventoryReceiveinventoryPostResponses = { type InventoryReceiveinventoryPostResponse (line 7595) | type InventoryReceiveinventoryPostResponse = InventoryReceiveinventoryPo... type LineagesGetData (line 7597) | type LineagesGetData = { type LineagesGetErrors (line 7604) | type LineagesGetErrors = { type LineagesGetResponses (line 7619) | type LineagesGetResponses = { type LineagesGetResponse (line 7626) | type LineagesGetResponse = LineagesGetResponses[keyof LineagesGetRespons... type PackageSetTagsPostData (line 7628) | type PackageSetTagsPostData = { type PackageSetTagsPostErrors (line 7638) | type PackageSetTagsPostErrors = { type PackageSetTagsPostError (line 7657) | type PackageSetTagsPostError = PackageSetTagsPostErrors[keyof PackageSet... type PackageSetTagsPostResponses (line 7659) | type PackageSetTagsPostResponses = { type PackageAddTagsPostData (line 7666) | type PackageAddTagsPostData = { type PackageAddTagsPostErrors (line 7676) | type PackageAddTagsPostErrors = { type PackageAddTagsPostResponses (line 7695) | type PackageAddTagsPostResponses = { type PackageRemoveTagsPostData (line 7702) | type PackageRemoveTagsPostData = { type PackageRemoveTagsPostErrors (line 7712) | type PackageRemoveTagsPostErrors = { type PackageRemoveTagsPostResponses (line 7731) | type PackageRemoveTagsPostResponses = { type PlantGetData (line 7738) | type PlantGetData = { type PlantGetErrors (line 7766) | type PlantGetErrors = { type PlantGetResponses (line 7781) | type PlantGetResponses = { type PlantGetResponse (line 7788) | type PlantGetResponse = PlantGetResponses[keyof PlantGetResponses]; type PlantPostData (line 7790) | type PlantPostData = { type PlantPostErrors (line 7800) | type PlantPostErrors = { type PlantPostError (line 7821) | type PlantPostError = PlantPostErrors[keyof PlantPostErrors]; type PlantPostResponses (line 7823) | type PlantPostResponses = { type PlantPostResponse (line 7830) | type PlantPostResponse = PlantPostResponses[keyof PlantPostResponses]; type PlantHarvestPostData (line 7832) | type PlantHarvestPostData = { type PlantHarvestPostErrors (line 7842) | type PlantHarvestPostErrors = { type PlantHarvestPostResponses (line 7857) | type PlantHarvestPostResponses = { type PlantMovePostData (line 7864) | type PlantMovePostData = { type PlantMovePostErrors (line 7874) | type PlantMovePostErrors = { type PlantMovePostResponses (line 7893) | type PlantMovePostResponses = { type PlantChangePhasePostData (line 7900) | type PlantChangePhasePostData = { type PlantChangePhasePostErrors (line 7910) | type PlantChangePhasePostErrors = { type PlantChangePhasePostResponses (line 7929) | type PlantChangePhasePostResponses = { type PlantRetirePostData (line 7936) | type PlantRetirePostData = { type PlantRetirePostErrors (line 7946) | type PlantRetirePostErrors = { type PlantRetirePostError (line 7965) | type PlantRetirePostError = PlantRetirePostErrors[keyof PlantRetirePostE... type PlantRetirePostResponses (line 7967) | type PlantRetirePostResponses = { type PlantGetReasonCodesGetData (line 7974) | type PlantGetReasonCodesGetData = { type PlantGetReasonCodesGetErrors (line 7981) | type PlantGetReasonCodesGetErrors = { type PlantGetReasonCodesGetResponses (line 7996) | type PlantGetReasonCodesGetResponses = { type PlantGetReasonCodesGetResponse (line 8003) | type PlantGetReasonCodesGetResponse = PlantGetReasonCodesGetResponses[ke... type PlantAssignPlantsToGroupPostData (line 8005) | type PlantAssignPlantsToGroupPostData = { type PlantAssignPlantsToGroupPostErrors (line 8015) | type PlantAssignPlantsToGroupPostErrors = { type PlantAssignPlantsToGroupPostError (line 8034) | type PlantAssignPlantsToGroupPostError = PlantAssignPlantsToGroupPostErr... type PlantAssignPlantsToGroupPostResponses (line 8036) | type PlantAssignPlantsToGroupPostResponses = { type PlantNonstsUpdatePostData (line 8043) | type PlantNonstsUpdatePostData = { type PlantNonstsUpdatePostErrors (line 8053) | type PlantNonstsUpdatePostErrors = { type PlantNonstsUpdatePostError (line 8072) | type PlantNonstsUpdatePostError = PlantNonstsUpdatePostErrors[keyof Plan... type PlantNonstsUpdatePostResponses (line 8074) | type PlantNonstsUpdatePostResponses = { type PlantNonstsUpdatePostResponse (line 8081) | type PlantNonstsUpdatePostResponse = PlantNonstsUpdatePostResponses[keyo... type PlantNonstsBatchImmatureplantsPostData (line 8083) | type PlantNonstsBatchImmatureplantsPostData = { type PlantNonstsBatchImmatureplantsPostErrors (line 8093) | type PlantNonstsBatchImmatureplantsPostErrors = { type PlantNonstsBatchImmatureplantsPostError (line 8112) | type PlantNonstsBatchImmatureplantsPostError = PlantNonstsBatchImmaturep... type PlantNonstsBatchImmatureplantsPostResponses (line 8114) | type PlantNonstsBatchImmatureplantsPostResponses = { type PlantNonstsBatchImmatureplantsPostResponse (line 8121) | type PlantNonstsBatchImmatureplantsPostResponse = PlantNonstsBatchImmatu... type PlantNonstsBatchConvertImmatureplantsPostData (line 8123) | type PlantNonstsBatchConvertImmatureplantsPostData = { type PlantNonstsBatchConvertImmatureplantsPostErrors (line 8133) | type PlantNonstsBatchConvertImmatureplantsPostErrors = { type PlantNonstsBatchConvertImmatureplantsPostError (line 8152) | type PlantNonstsBatchConvertImmatureplantsPostError = PlantNonstsBatchCo... type PlantNonstsBatchConvertImmatureplantsPostResponses (line 8154) | type PlantNonstsBatchConvertImmatureplantsPostResponses = { type PlantNonstsBatchConvertImmatureplantsPostResponse (line 8161) | type PlantNonstsBatchConvertImmatureplantsPostResponse = PlantNonstsBatc... type PlantNonstsBatchMatureplantsPostData (line 8163) | type PlantNonstsBatchMatureplantsPostData = { type PlantNonstsBatchMatureplantsPostErrors (line 8173) | type PlantNonstsBatchMatureplantsPostErrors = { type PlantNonstsBatchMatureplantsPostError (line 8192) | type PlantNonstsBatchMatureplantsPostError = PlantNonstsBatchMatureplant... type PlantNonstsBatchMatureplantsPostResponses (line 8194) | type PlantNonstsBatchMatureplantsPostResponses = { type PlantNonstsBatchMatureplantsPostResponse (line 8201) | type PlantNonstsBatchMatureplantsPostResponse = PlantNonstsBatchMaturepl... type PlantNonstsRetagPostData (line 8203) | type PlantNonstsRetagPostData = { type PlantNonstsRetagPostErrors (line 8213) | type PlantNonstsRetagPostErrors = { type PlantNonstsRetagPostError (line 8232) | type PlantNonstsRetagPostError = PlantNonstsRetagPostErrors[keyof PlantN... type PlantNonstsRetagPostResponses (line 8234) | type PlantNonstsRetagPostResponses = { type PlantNonstsBatchRetirePostData (line 8241) | type PlantNonstsBatchRetirePostData = { type PlantNonstsBatchRetirePostErrors (line 8251) | type PlantNonstsBatchRetirePostErrors = { type PlantNonstsBatchRetirePostError (line 8270) | type PlantNonstsBatchRetirePostError = PlantNonstsBatchRetirePostErrors[... type PlantNonstsBatchRetirePostResponses (line 8272) | type PlantNonstsBatchRetirePostResponses = { type PlantNonstsBatchFinishHarvestPostData (line 8279) | type PlantNonstsBatchFinishHarvestPostData = { type PlantNonstsBatchFinishHarvestPostErrors (line 8289) | type PlantNonstsBatchFinishHarvestPostErrors = { type PlantNonstsBatchFinishHarvestPostError (line 8308) | type PlantNonstsBatchFinishHarvestPostError = PlantNonstsBatchFinishHarv... type PlantNonstsBatchFinishHarvestPostResponses (line 8310) | type PlantNonstsBatchFinishHarvestPostResponses = { type PlantNonstsSplitPostData (line 8317) | type PlantNonstsSplitPostData = { type PlantNonstsSplitPostErrors (line 8327) | type PlantNonstsSplitPostErrors = { type PlantNonstsSplitPostError (line 8346) | type PlantNonstsSplitPostError = PlantNonstsSplitPostErrors[keyof PlantN... type PlantNonstsSplitPostResponses (line 8348) | type PlantNonstsSplitPostResponses = { type PlantNonstsSplitPostResponse (line 8355) | type PlantNonstsSplitPostResponse = PlantNonstsSplitPostResponses[keyof ... type PlantNonstsBatchPostData (line 8357) | type PlantNonstsBatchPostData = { type PlantNonstsBatchPostErrors (line 8367) | type PlantNonstsBatchPostErrors = { type PlantNonstsBatchPostError (line 8386) | type PlantNonstsBatchPostError = PlantNonstsBatchPostErrors[keyof PlantN... type PlantNonstsBatchPostResponses (line 8388) | type PlantNonstsBatchPostResponses = { type PreorderSubmitPostData (line 8395) | type PreorderSubmitPostData = { type PreorderSubmitPostErrors (line 8405) | type PreorderSubmitPostErrors = { type PreorderSubmitPostError (line 8416) | type PreorderSubmitPostError = PreorderSubmitPostErrors[keyof PreorderSu... type PreorderSubmitPostResponses (line 8418) | type PreorderSubmitPostResponses = { type PreorderSubmitPostResponse (line 8425) | type PreorderSubmitPostResponse = PreorderSubmitPostResponses[keyof Preo... type PreorderUpdatePostData (line 8427) | type PreorderUpdatePostData = { type PreorderUpdatePostErrors (line 8437) | type PreorderUpdatePostErrors = { type PreorderUpdatePostResponses (line 8452) | type PreorderUpdatePostResponses = { type PreorderCancelPostData (line 8459) | type PreorderCancelPostData = { type PreorderCancelPostErrors (line 8469) | type PreorderCancelPostErrors = { type PreorderCancelPostError (line 8484) | type PreorderCancelPostError = PreorderCancelPostErrors[keyof PreorderCa... type PreorderCancelPostResponses (line 8486) | type PreorderCancelPostResponses = { type PreorderCancelPostResponse (line 8493) | type PreorderCancelPostResponse = PreorderCancelPostResponses[keyof Preo... type PreorderStatusGetData (line 8495) | type PreorderStatusGetData = { type PreorderStatusGetErrors (line 8511) | type PreorderStatusGetErrors = { type PreorderStatusGetResponses (line 8522) | type PreorderStatusGetResponses = { type PreorderStatusGetResponse (line 8529) | type PreorderStatusGetResponse = PreorderStatusGetResponses[keyof Preord... type PreorderPriceCartPostData (line 8531) | type PreorderPriceCartPostData = { type PreorderPriceCartPostErrors (line 8541) | type PreorderPriceCartPostErrors = { type PreorderPriceCartPostError (line 8552) | type PreorderPriceCartPostError = PreorderPriceCartPostErrors[keyof Preo... type PreorderPriceCartPostResponses (line 8554) | type PreorderPriceCartPostResponses = { type PreorderPriceCartPostResponse (line 8561) | type PreorderPriceCartPostResponse = PreorderPriceCartPostResponses[keyo... type PricingTiersGetData (line 8563) | type PricingTiersGetData = { type PricingTiersGetErrors (line 8570) | type PricingTiersGetErrors = { type PricingTiersGetResponses (line 8585) | type PricingTiersGetResponses = { type PricingTiersGetResponse (line 8592) | type PricingTiersGetResponse = PricingTiersGetResponses[keyof PricingTie... type ProducersGetData (line 8594) | type ProducersGetData = { type ProducersGetErrors (line 8601) | type ProducersGetErrors = { type ProducersGetResponses (line 8616) | type ProducersGetResponses = { type ProducersGetResponse (line 8623) | type ProducersGetResponse = ProducersGetResponses[keyof ProducersGetResp... type ProductsLocationOverridesGetData (line 8625) | type ProductsLocationOverridesGetData = { type ProductsLocationOverridesGetErrors (line 8632) | type ProductsLocationOverridesGetErrors = { type ProductsLocationOverridesGetResponses (line 8647) | type ProductsLocationOverridesGetResponses = { type ProductsLocationOverridesGetResponse (line 8654) | type ProductsLocationOverridesGetResponse = ProductsLocationOverridesGet... type ProductsLocationOverridesPostData (line 8656) | type ProductsLocationOverridesPostData = { type ProductsLocationOverridesPostErrors (line 8666) | type ProductsLocationOverridesPostErrors = { type ProductsLocationOverridesPostResponses (line 8685) | type ProductsLocationOverridesPostResponses = { type ProductsGetData (line 8692) | type ProductsGetData = { type ProductsGetErrors (line 8708) | type ProductsGetErrors = { type ProductsGetResponses (line 8723) | type ProductsGetResponses = { type ProductsGetResponse (line 8730) | type ProductsGetResponse = ProductsGetResponses[keyof ProductsGetRespons... type ProductsProductPostData (line 8732) | type ProductsProductPostData = { type ProductsProductPostErrors (line 8742) | type ProductsProductPostErrors = { type ProductsProductPostError (line 8761) | type ProductsProductPostError = ProductsProductPostErrors[keyof Products... type ProductsProductPostResponses (line 8763) | type ProductsProductPostResponses = { type ProductsProductPostResponse (line 8770) | type ProductsProductPostResponse = ProductsProductPostResponses[keyof Pr... type ProductsProductsPostData (line 8772) | type ProductsProductsPostData = { type ProductsProductsPostErrors (line 8782) | type ProductsProductsPostErrors = { type ProductsProductsPostError (line 8801) | type ProductsProductsPostError = ProductsProductsPostErrors[keyof Produc... type ProductsProductsPostResponses (line 8803) | type ProductsProductsPostResponses = { type ProductsProductsPostResponse (line 8812) | type ProductsProductsPostResponse = ProductsProductsPostResponses[keyof ... type ProductsSetImagePostData (line 8814) | type ProductsSetImagePostData = { type ProductsSetImagePostErrors (line 8824) | type ProductsSetImagePostErrors = { type ProductsSetImagePostError (line 8843) | type ProductsSetImagePostError = ProductsSetImagePostErrors[keyof Produc... type ProductsSetImagePostResponses (line 8845) | type ProductsSetImagePostResponses = { type ProductsSetImagePostResponse (line 8852) | type ProductsSetImagePostResponse = ProductsSetImagePostResponses[keyof ... type ProductsRemoveImagePostData (line 8854) | type ProductsRemoveImagePostData = { type ProductsRemoveImagePostErrors (line 8864) | type ProductsRemoveImagePostErrors = { type ProductsRemoveImagePostError (line 8883) | type ProductsRemoveImagePostError = ProductsRemoveImagePostErrors[keyof ... type ProductsRemoveImagePostResponses (line 8885) | type ProductsRemoveImagePostResponses = { type ProductsRemoveImagePostResponse (line 8892) | type ProductsRemoveImagePostResponse = ProductsRemoveImagePostResponses[... type ProductsStrainsGetData (line 8894) | type ProductsStrainsGetData = { type ProductsStrainsGetErrors (line 8901) | type ProductsStrainsGetErrors = { type ProductsStrainsGetResponses (line 8916) | type ProductsStrainsGetResponses = { type ProductsStrainsGetResponse (line 8923) | type ProductsStrainsGetResponse = ProductsStrainsGetResponses[keyof Prod... type ProductsExternalCategoriesGetData (line 8925) | type ProductsExternalCategoriesGetData = { type ProductsExternalCategoriesGetErrors (line 8937) | type ProductsExternalCategoriesGetErrors = { type ProductsExternalCategoriesGetError (line 8956) | type ProductsExternalCategoriesGetError = ProductsExternalCategoriesGetE... type ProductsExternalCategoriesGetResponses (line 8958) | type ProductsExternalCategoriesGetResponses = { type ProductsExternalCategoriesGetResponse (line 8965) | type ProductsExternalCategoriesGetResponse = ProductsExternalCategoriesG... type ProductCategoryGetData (line 8967) | type ProductCategoryGetData = { type ProductCategoryGetErrors (line 8974) | type ProductCategoryGetErrors = { type ProductCategoryGetResponses (line 8989) | type ProductCategoryGetResponses = { type ProductCategoryGetResponse (line 8996) | type ProductCategoryGetResponse = ProductCategoryGetResponses[keyof Prod... type PurchaseOrderGetData (line 8998) | type PurchaseOrderGetData = { type PurchaseOrderGetErrors (line 9030) | type PurchaseOrderGetErrors = { type PurchaseOrderGetError (line 9049) | type PurchaseOrderGetError = PurchaseOrderGetErrors[keyof PurchaseOrderG... type PurchaseOrderGetResponses (line 9051) | type PurchaseOrderGetResponses = { type PurchaseOrderGetResponse (line 9058) | type PurchaseOrderGetResponse = PurchaseOrderGetResponses[keyof Purchase... type PurchaseOrderPostData (line 9060) | type PurchaseOrderPostData = { type PurchaseOrderPostErrors (line 9070) | type PurchaseOrderPostErrors = { type PurchaseOrderPostError (line 9089) | type PurchaseOrderPostError = PurchaseOrderPostErrors[keyof PurchaseOrde... type PurchaseOrderPostResponses (line 9091) | type PurchaseOrderPostResponses = { type PurchaseOrderPostResponse (line 9098) | type PurchaseOrderPostResponse = PurchaseOrderPostResponses[keyof Purcha... type ReferenceUnitsGetData (line 9100) | type ReferenceUnitsGetData = { type ReferenceUnitsGetErrors (line 9107) | type ReferenceUnitsGetErrors = { type ReferenceUnitsGetResponses (line 9122) | type ReferenceUnitsGetResponses = { type ReferenceUnitsGetResponse (line 9129) | type ReferenceUnitsGetResponse = ReferenceUnitsGetResponses[keyof Refere... type ReferenceUnitTypesGetData (line 9131) | type ReferenceUnitTypesGetData = { type ReferenceUnitTypesGetErrors (line 9138) | type ReferenceUnitTypesGetErrors = { type ReferenceUnitTypesGetResponses (line 9153) | type ReferenceUnitTypesGetResponses = { type ReferenceUnitTypesGetResponse (line 9160) | type ReferenceUnitTypesGetResponse = ReferenceUnitTypesGetResponses[keyo... type ReferenceLabResultUnitsGetData (line 9162) | type ReferenceLabResultUnitsGetData = { type ReferenceLabResultUnitsGetErrors (line 9169) | type ReferenceLabResultUnitsGetErrors = { type ReferenceLabResultUnitsGetResponses (line 9184) | type ReferenceLabResultUnitsGetResponses = { type ReferenceLabResultUnitsGetResponse (line 9191) | type ReferenceLabResultUnitsGetResponse = ReferenceLabResultUnitsGetResp... type ReferenceLabResultsNamesGetData (line 9193) | type ReferenceLabResultsNamesGetData = { type ReferenceLabResultsNamesGetErrors (line 9200) | type ReferenceLabResultsNamesGetErrors = { type ReferenceLabResultsNamesGetResponses (line 9215) | type ReferenceLabResultsNamesGetResponses = { type ReferenceLabResultsNamesGetResponse (line 9222) | type ReferenceLabResultsNamesGetResponse = ReferenceLabResultsNamesGetRe... type RegulatoryCategoryGetData (line 9224) | type RegulatoryCategoryGetData = { type RegulatoryCategoryGetErrors (line 9231) | type RegulatoryCategoryGetErrors = { type RegulatoryCategoryGetResponses (line 9246) | type RegulatoryCategoryGetResponses = { type RegulatoryCategoryGetResponse (line 9253) | type RegulatoryCategoryGetResponse = RegulatoryCategoryGetResponses[keyo... type ReportingInventoryGetData (line 9255) | type ReportingInventoryGetData = { type ReportingInventoryGetErrors (line 9267) | type ReportingInventoryGetErrors = { type ReportingInventoryGetResponses (line 9282) | type ReportingInventoryGetResponses = { type ReportingInventoryGetResponse (line 9289) | type ReportingInventoryGetResponse = ReportingInventoryGetResponses[keyo... type ReportingTransactionsGetData (line 9291) | type ReportingTransactionsGetData = { type ReportingTransactionsGetErrors (line 9335) | type ReportingTransactionsGetErrors = { type ReportingTransactionsGetError (line 9358) | type ReportingTransactionsGetError = ReportingTransactionsGetErrors[keyo... type ReportingTransactionsGetResponses (line 9360) | type ReportingTransactionsGetResponses = { type ReportingTransactionsGetResponse (line 9367) | type ReportingTransactionsGetResponse = ReportingTransactionsGetResponse... type ReportingCustomersGetData (line 9369) | type ReportingCustomersGetData = { type ReportingCustomersGetErrors (line 9389) | type ReportingCustomersGetErrors = { type ReportingCustomersGetResponses (line 9404) | type ReportingCustomersGetResponses = { type ReportingCustomersGetResponse (line 9411) | type ReportingCustomersGetResponse = ReportingCustomersGetResponses[keyo... type ReportingCustomersPaginatedGetData (line 9413) | type ReportingCustomersPaginatedGetData = { type ReportingCustomersPaginatedGetErrors (line 9441) | type ReportingCustomersPaginatedGetErrors = { type ReportingCustomersPaginatedGetError (line 9460) | type ReportingCustomersPaginatedGetError = ReportingCustomersPaginatedGe... type ReportingCustomersPaginatedGetResponses (line 9462) | type ReportingCustomersPaginatedGetResponses = { type ReportingCustomersPaginatedGetResponse (line 9469) | type ReportingCustomersPaginatedGetResponse = ReportingCustomersPaginate... type ReportingRegisterAdjustmentsGetData (line 9471) | type ReportingRegisterAdjustmentsGetData = { type ReportingRegisterAdjustmentsGetErrors (line 9487) | type ReportingRegisterAdjustmentsGetErrors = { type ReportingRegisterAdjustmentsGetResponses (line 9502) | type ReportingRegisterAdjustmentsGetResponses = { type ReportingRegisterAdjustmentsGetResponse (line 9509) | type ReportingRegisterAdjustmentsGetResponse = ReportingRegisterAdjustme... type ReportingRegisterTransactionsGetData (line 9511) | type ReportingRegisterTransactionsGetData = { type ReportingRegisterTransactionsGetErrors (line 9527) | type ReportingRegisterTransactionsGetErrors = { type ReportingRegisterTransactionsGetResponses (line 9542) | type ReportingRegisterTransactionsGetResponses = { type ReportingRegisterTransactionsGetResponse (line 9549) | type ReportingRegisterTransactionsGetResponse = ReportingRegisterTransac... type ReportingCashSummaryGetData (line 9551) | type ReportingCashSummaryGetData = { type ReportingCashSummaryGetErrors (line 9567) | type ReportingCashSummaryGetErrors = { type ReportingCashSummaryGetError (line 9586) | type ReportingCashSummaryGetError = ReportingCashSummaryGetErrors[keyof ... type ReportingCashSummaryGetResponses (line 9588) | type ReportingCashSummaryGetResponses = { type ReportingCashSummaryGetResponse (line 9595) | type ReportingCashSummaryGetResponse = ReportingCashSummaryGetResponses[... type ReportingLoyaltySnapshotGetData (line 9597) | type ReportingLoyaltySnapshotGetData = { type ReportingLoyaltySnapshotGetErrors (line 9604) | type ReportingLoyaltySnapshotGetErrors = { type ReportingLoyaltySnapshotGetResponses (line 9619) | type ReportingLoyaltySnapshotGetResponses = { type ReportingLoyaltySnapshotGetResponse (line 9626) | type ReportingLoyaltySnapshotGetResponse = ReportingLoyaltySnapshotGetRe... type ReportingProductsGetData (line 9628) | type ReportingProductsGetData = { type ReportingProductsGetErrors (line 9640) | type ReportingProductsGetErrors = { type ReportingProductsGetResponses (line 9655) | type ReportingProductsGetResponses = { type ReportingProductsGetResponse (line 9662) | type ReportingProductsGetResponse = ReportingProductsGetResponses[keyof ... type ReportingClosingReportGetData (line 9664) | type ReportingClosingReportGetData = { type ReportingClosingReportGetErrors (line 9680) | type ReportingClosingReportGetErrors = { type ReportingClosingReportGetError (line 9699) | type ReportingClosingReportGetError = ReportingClosingReportGetErrors[ke... type ReportingClosingReportGetResponses (line 9701) | type ReportingClosingReportGetResponses = { type ReportingClosingReportGetResponse (line 9708) | type ReportingClosingReportGetResponse = ReportingClosingReportGetRespon... type ReportingDiscountsGetData (line 9710) | type ReportingDiscountsGetData = { type ReportingDiscountsGetErrors (line 9722) | type ReportingDiscountsGetErrors = { type ReportingDiscountsGetResponses (line 9737) | type ReportingDiscountsGetResponses = { type ReportingDiscountsGetResponse (line 9744) | type ReportingDiscountsGetResponse = ReportingDiscountsGetResponses[keyo... type RoomRoomsGetData (line 9746) | type RoomRoomsGetData = { type RoomRoomsGetErrors (line 9762) | type RoomRoomsGetErrors = { type RoomRoomsGetResponses (line 9777) | type RoomRoomsGetResponses = { type RoomRoomsGetResponse (line 9784) | type RoomRoomsGetResponse = RoomRoomsGetResponses[keyof RoomRoomsGetResp... type RoomPostData (line 9786) | type RoomPostData = { type RoomPostErrors (line 9796) | type RoomPostErrors = { type RoomPostResponses (line 9811) | type RoomPostResponses = { type RoomPostResponse (line 9818) | type RoomPostResponse = RoomPostResponses[keyof RoomPostResponses]; type SizesGetData (line 9820) | type SizesGetData = { type SizesGetErrors (line 9827) | type SizesGetErrors = { type SizesGetResponses (line 9842) | type SizesGetResponses = { type SizesGetResponse (line 9849) | type SizesGetResponse = SizesGetResponses[keyof SizesGetResponses]; type StrainsGetData (line 9851) | type StrainsGetData = { type StrainsGetErrors (line 9858) | type StrainsGetErrors = { type StrainsGetResponses (line 9873) | type StrainsGetResponses = { type StrainsGetResponse (line 9880) | type StrainsGetResponse = StrainsGetResponses[keyof StrainsGetResponses]; type StrainsPostData (line 9882) | type StrainsPostData = { type StrainsPostErrors (line 9889) | type StrainsPostErrors = { type StrainsPostError (line 9908) | type StrainsPostError = StrainsPostErrors[keyof StrainsPostErrors]; type StrainsPostResponses (line 9910) | type StrainsPostResponses = { type StrainsPostResponse (line 9917) | type StrainsPostResponse = StrainsPostResponses[keyof StrainsPostRespons... type StrainsTypesGetData (line 9919) | type StrainsTypesGetData = { type StrainsTypesGetErrors (line 9926) | type StrainsTypesGetErrors = { type StrainsTypesGetResponses (line 9941) | type StrainsTypesGetResponses = { type StrainsTypesGetResponse (line 9948) | type StrainsTypesGetResponse = StrainsTypesGetResponses[keyof StrainsTyp... type TableTablesGetData (line 9950) | type TableTablesGetData = { type TableTablesGetErrors (line 9966) | type TableTablesGetErrors = { type TableTablesGetResponses (line 9981) | type TableTablesGetResponses = { type TableTablesGetResponse (line 9988) | type TableTablesGetResponse = TableTablesGetResponses[keyof TableTablesG... type TablePostData (line 9990) | type TablePostData = { type TablePostErrors (line 10000) | type TablePostErrors = { type TablePostResponses (line 10015) | type TablePostResponses = { type TablePostResponse (line 10022) | type TablePostResponse = TablePostResponses[keyof TablePostResponses]; type TagGetData (line 10024) | type TagGetData = { type TagGetErrors (line 10031) | type TagGetErrors = { type TagGetResponses (line 10046) | type TagGetResponses = { type TagGetResponse (line 10053) | type TagGetResponse = TagGetResponses[keyof TagGetResponses]; type TerminalsGetData (line 10055) | type TerminalsGetData = { type TerminalsGetErrors (line 10062) | type TerminalsGetErrors = { type TerminalsGetResponses (line 10077) | type TerminalsGetResponses = { type TerminalsGetResponse (line 10084) | type TerminalsGetResponse = TerminalsGetResponses[keyof TerminalsGetResp... type TransactionCreateAnonymousPostData (line 10086) | type TransactionCreateAnonymousPostData = { type TransactionCreateAnonymousPostErrors (line 10096) | type TransactionCreateAnonymousPostErrors = { type TransactionCreateAnonymousPostResponses (line 10111) | type TransactionCreateAnonymousPostResponses = { type TransactionCreateAnonymousPostResponse (line 10118) | type TransactionCreateAnonymousPostResponse = TransactionCreateAnonymous... type UtilAuthorizationHeaderByApiKeyGetData (line 10120) | type UtilAuthorizationHeaderByApiKeyGetData = { type UtilAuthorizationHeaderByApiKeyGetResponses (line 10132) | type UtilAuthorizationHeaderByApiKeyGetResponses = { type UtilAuthorizationHeaderByApiKeyGetResponse (line 10139) | type UtilAuthorizationHeaderByApiKeyGetResponse = UtilAuthorizationHeade... type VehiclesGetData (line 10141) | type VehiclesGetData = { type VehiclesGetErrors (line 10148) | type VehiclesGetErrors = { type VehiclesGetResponses (line 10163) | type VehiclesGetResponses = { type VehiclesGetResponse (line 10170) | type VehiclesGetResponse = VehiclesGetResponses[keyof VehiclesGetRespons... type VehiclesPostData (line 10172) | type VehiclesPostData = { type VehiclesPostErrors (line 10182) | type VehiclesPostErrors = { type VehiclesPostError (line 10201) | type VehiclesPostError = VehiclesPostErrors[keyof VehiclesPostErrors]; type VehiclesPostResponses (line 10203) | type VehiclesPostResponses = { type VendorVendorsGetData (line 10210) | type VendorVendorsGetData = { type VendorVendorsGetErrors (line 10226) | type VendorVendorsGetErrors = { type VendorVendorsGetResponses (line 10241) | type VendorVendorsGetResponses = { type VendorVendorsGetResponse (line 10248) | type VendorVendorsGetResponse = VendorVendorsGetResponses[keyof VendorVe... type VendorPostData (line 10250) | type VendorPostData = { type VendorPostErrors (line 10260) | type VendorPostErrors = { type VendorPostResponses (line 10275) | type VendorPostResponses = { type VendorPostResponse (line 10282) | type VendorPostResponse = VendorPostResponses[keyof VendorPostResponses]; type WasteGetData (line 10284) | type WasteGetData = { type WasteGetErrors (line 10291) | type WasteGetErrors = { type WasteGetResponses (line 10306) | type WasteGetResponses = { type WasteGetResponse (line 10313) | type WasteGetResponse = WasteGetResponses[keyof WasteGetResponses]; type WasteHarvestWastePostData (line 10315) | type WasteHarvestWastePostData = { type WasteHarvestWastePostErrors (line 10322) | type WasteHarvestWastePostErrors = { type WasteHarvestWastePostError (line 10341) | type WasteHarvestWastePostError = WasteHarvestWastePostErrors[keyof Wast... type WasteHarvestWastePostResponses (line 10343) | type WasteHarvestWastePostResponses = { type WasteHarvestWastePostResponse (line 10352) | type WasteHarvestWastePostResponse = WasteHarvestWastePostResponses[keyo... type WastePlantWastePostData (line 10354) | type WastePlantWastePostData = { type WastePlantWastePostErrors (line 10361) | type WastePlantWastePostErrors = { type WastePlantWastePostError (line 10380) | type WastePlantWastePostError = WastePlantWastePostErrors[keyof WastePla... type WastePlantWastePostResponses (line 10382) | type WastePlantWastePostResponses = { type WastePlantWastePostResponse (line 10391) | type WastePlantWastePostResponse = WastePlantWastePostResponses[keyof Wa... type WhoamiGetData (line 10393) | type WhoamiGetData = { type WhoamiGetErrors (line 10400) | type WhoamiGetErrors = { type WhoamiGetResponses (line 10419) | type WhoamiGetResponses = { type WhoamiGetResponse (line 10426) | type WhoamiGetResponse = WhoamiGetResponses[keyof WhoamiGetResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-read-write/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooReadWrite (line 7) | type FooReadWrite = BarRead; type FooRead (line 9) | type FooRead = BarRead & { type FooWrite (line 13) | type FooWrite = BarWrite; type BarRead (line 15) | type BarRead = Baz | { type BarWrite (line 19) | type BarWrite = Baz; type Baz (line 21) | type Baz = { type QuxAllRead (line 25) | type QuxAllRead = { type Quux (line 29) | type Quux = { type Corge (line 34) | type Corge = { type FooReadWriteWritable (line 40) | type FooReadWriteWritable = BarReadWritable & { type FooReadWritable (line 44) | type FooReadWritable = BarReadWritable; type FooWriteWritable (line 46) | type FooWriteWritable = BarWriteWritable & { type BarReadWritable (line 50) | type BarReadWritable = Baz; type BarWriteWritable (line 52) | type BarWriteWritable = Baz | { type QuuxWritable (line 56) | type QuuxWritable = { type CorgeWritable (line 60) | type CorgeWritable = { type PostFooReadWriteData (line 66) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 73) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 80) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 82) | type PostFooReadData = { type PostFooReadResponses (line 89) | type PostFooReadResponses = { type PostFooReadResponse (line 96) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 98) | type PostFooWriteData = { type PostFooWriteResponses (line 105) | type PostFooWriteResponses = { type PostFooWriteResponse (line 112) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-schemas-name-collision/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type UserV1User (line 7) | type UserV1User = { type User (line 12) | type User = { type UserV2User (line 16) | type UserV2User = { type GetTestData (line 21) | type GetTestData = { type GetTestResponses (line 28) | type GetTestResponses = { type GetTestResponse (line 39) | type GetTestResponse = GetTestResponses[keyof GetTestResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/transforms-schemas-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type User (line 7) | type User = { type UserProfile (line 13) | type UserProfile = { type Post (line 18) | type Post = { type Comment (line 25) | type Comment = { type GetUsersData (line 31) | type GetUsersData = { type GetUsersResponses (line 38) | type GetUsersResponses = { type GetUsersResponse (line 45) | type GetUsersResponse = GetUsersResponses[keyof GetUsersResponses]; type PostPostsData (line 47) | type PostPostsData = { type PostPostsResponses (line 54) | type PostPostsResponses = { type PostPostsResponse (line 61) | type PostPostsResponse = PostPostsResponses[keyof PostPostsResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.0.x/type-invalid/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = unknown; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/additional-properties-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = Foo & {}; type Baz (line 13) | type Baz = Foo & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/additional-properties-true-any/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { type Baz (line 16) | type Baz = Foo & { type Qux (line 21) | type Qux = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/additional-properties-true/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { type Baz (line 16) | type Baz = Foo & { type Qux (line 21) | type Qux = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/additional-properties-undefined/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/array-items-one-of-length-1/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = string; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/array-nested-one-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = Array<{ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/body-response-text-plain/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-angular/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-axios/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-fetch/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 16) | interface RetryOptions { type Config (line 37) | interface Config type RequestOptions (line 88) | interface RequestOptions< type ResolvedRequestOptions (line 123) | interface ResolvedRequestOptions< type RequestResult (line 131) | type RequestResult< type ClientOptions (line 166) | interface ClientOptions { type MethodFn (line 172) | type MethodFn = < type SseFn (line 181) | type SseFn = < type RequestFn (line 190) | type RequestFn = < type BuildUrlFn (line 200) | type BuildUrlFn = < type Client (line 211) | type Client = CoreClient... type CreateClientConfig (line 223) | type CreateClientConfig = ( type TDataShape (line 227) | interface TDataShape { type OmitKeys (line 235) | type OmitKeys = Pick>; type Options (line 237) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/client/utils.gen.ts type ErrInterceptor (line 215) | type ErrInterceptor = ( type ReqInterceptor (line 222) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 224) | type ResInterceptor = ( class Interceptors (line 230) | class Interceptors { method clear (line 233) | clear(): void { method eject (line 237) | eject(id: number | Interceptor): void { method exists (line 244) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 249) | getInterceptorIndex(id: number | Interceptor): number { method update (line 256) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 265) | use(fn: Interceptor): number { type Middleware (line 271) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ky/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-next/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-nuxt/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/clean-false/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/import-file-extension-ts/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-node16-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/@hey-api/client-ofetch/tsconfig-nodenext-sdk/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-false/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-number/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-strict/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-string/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/default/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/default/sdk.gen.ts type Options (line 8) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/sdk-client-optional/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/sdk-client-optional/sdk.gen.ts type Options (line 8) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/sdk-client-required/custom-client.gen.ts type CreateClientConfig (line 15) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/client-custom/sdk-client-required/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-false/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-number/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-strict/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/base-url-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 15) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 20) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 28) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 36) | type CommentWithBreaks = number; type CommentWithBackticks (line 41) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 46) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 51) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 56) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 61) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 66) | type CommentWithReservedCharacters = number; type SimpleInteger (line 71) | type SimpleInteger = number; type SimpleBoolean (line 76) | type SimpleBoolean = boolean; type SimpleString (line 81) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 86) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 91) | type SimpleFile = Blob | File; type SimpleReference (line 96) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 101) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 106) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 108) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 113) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 118) | type EnumFromDescription = number; type EnumWithExtensions (line 123) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 125) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 130) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/bundle/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-optional/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/custom.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/clients/my-client/sdk-client-required/sdk.gen.ts type Options (line 6) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/components-request-bodies/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 10) | type Foo = { type PostFooData (line 14) | type PostFooData = { type PostFooResponses (line 24) | type PostFooResponses = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/const/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-binary/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 18) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type GetBarData (line 20) | type GetBarData = { type GetBarResponses (line 27) | type GetBarResponses = { type GetBarResponse (line 31) | type GetBarResponse = GetBarResponses[keyof GetBarResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-media-type/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FileUploadRequest (line 7) | type FileUploadRequest = { type FileUploadRequestTyped (line 14) | type FileUploadRequestTyped = { type UploadFileData (line 21) | type UploadFileData = { type UploadFileResponses (line 28) | type UploadFileResponses = { type UploadFileTypedData (line 35) | type UploadFileTypedData = { type UploadFileTypedResponses (line 42) | type UploadFileTypedResponses = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/content-types/sdk.gen.ts type Options (line 7) | type Options & { type Baz (line 16) | type Baz = Omit & { type Qux (line 21) | type Qux = Omit & { type FooMapped (line 26) | type FooMapped = { type BarMapped (line 30) | type BarMapped = Omit & { type BazMapped (line 35) | type BazMapped = Omit & { type QuxMapped (line 40) | type QuxMapped = Omit & { type FooUnion (line 45) | type FooUnion = ({ type BarUnion (line 51) | type BarUnion = { type BazUnion (line 56) | type BazUnion = { type QuxExtend (line 61) | type QuxExtend = FooUnion; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-allof-inline/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Omit & { type Baz (line 17) | type Baz = Omit & { type Qux (line 22) | type Qux = Omit & { type GetFoosData (line 27) | type GetFoosData = { type GetFoosResponses (line 34) | type GetFoosResponses = { type GetFoosResponse (line 41) | type GetFoosResponse = GetFoosResponses[keyof GetFoosResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-allof-nested/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type VehicleDto (line 7) | type VehicleDto = { type CarDto (line 12) | type CarDto = Omit & { type VolvoDto (line 17) | type VolvoDto = Omit & { type GetCarsData (line 22) | type GetCarsData = { type GetCarsResponses (line 29) | type GetCarsResponses = { type GetCarsResponse (line 36) | type GetCarsResponse = GetCarsResponses[keyof GetCarsResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-any-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = ({ type Baz (line 13) | type Baz = Qux; type Bar (line 15) | type Bar = Qux; type Spæcial (line 17) | type Spæcial = Qux; type Qux (line 19) | type Qux = { type Quux (line 24) | type Quux = 'Bar' | 'Baz'; type Quuz (line 26) | type Quuz = ({ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-mapped-many/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = ({ type Bar (line 15) | type Bar = { type Baz (line 19) | type Baz = { type Spæcial (line 23) | type Spæcial = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-non-string/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BooleanOneOf (line 7) | type BooleanOneOf = ({ type AutoConfig (line 13) | type AutoConfig = { type CustomConfig (line 18) | type CustomConfig = { type BooleanAnyOf (line 23) | type BooleanAnyOf = ({ type IntegerOneOf (line 29) | type IntegerOneOf = ({ type TypeOne (line 35) | type TypeOne = { type TypeTwo (line 40) | type TypeTwo = { type NumberOneOf (line 45) | type NumberOneOf = ({ type VersionAlpha (line 51) | type VersionAlpha = { type VersionBeta (line 56) | type VersionBeta = { type IntegerAllOfBase (line 61) | type IntegerAllOfBase = { type IntegerAllOfChildA (line 65) | type IntegerAllOfChildA = Omit & { type IntegerAllOfChildB (line 70) | type IntegerAllOfChildB = Omit & { type NullableIntegerOneOf (line 75) | type NullableIntegerOneOf = ({ type NullableVariantX (line 81) | type NullableVariantX = { type NullableVariantY (line 86) | type NullableVariantY = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-object-self-mapped/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BlogPostDto (line 7) | type BlogPostDto = { type BlogPostWithImageDto (line 13) | type BlogPostWithImageDto = Omit & { type GetBlogPostsData (line 18) | type GetBlogPostsData = { type GetBlogPostsResponses (line 25) | type GetBlogPostsResponses = { type GetBlogPostsResponse (line 32) | type GetBlogPostsResponse = GetBlogPostsResponses[keyof GetBlogPostsResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/discriminator-one-of-read-write/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type AnimalPayload (line 7) | type AnimalPayload = { type DogPayload (line 11) | type DogPayload = Omit & { type CatPayload (line 18) | type CatPayload = Omit & { type CreatePetRequest (line 25) | type CreatePetRequest = { type CreatePetResponse (line 34) | type CreatePetResponse = { type DogPayloadWritable (line 44) | type DogPayloadWritable = Omit = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/headers/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/internal-name-conflict/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/pagination-ref/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false-axios/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/parameter-explode-false/sdk.gen.ts type Options (line 7) | type Options(options?: Options<... method patchApiVbyApiVersionNoTag (line 21) | public patchApiVbyApiVersionNoTag(options: Options(options?: Options<... method getApiVbyApiVersionSimpleOperation (line 48) | public getApiVbyApiVersionSimpleOperation(options?: Options(options: Option... method callWithParameters (line 165) | public callWithParameters(option... method callWithWeirdParameterNames (line 174) | public callWithWeirdParameterNames(... method postCallWithOptionalParam (line 192) | public postCallWithOptionalParam... class DescriptionsServiceRequests (line 203) | class DescriptionsServiceRequests { method callWithDescriptions (line 204) | public callWithDescriptions(opti... class DeprecatedServiceRequests (line 215) | class DeprecatedServiceRequests { method deprecatedCall (line 219) | public deprecatedCall(options: O... class RequestBodyServiceRequests (line 230) | class RequestBodyServiceRequests { method postApiVbyApiVersionRequestBody (line 231) | public postApiVbyApiVersionRequestBody... method callWithDefaultOptionalParameters (line 264) | public callWithDefaultOptionalParameters(o... class DuplicateServiceRequests (line 284) | class DuplicateServiceRequests { method duplicateName (line 285) | public duplicateName(options?: O... method duplicateName2 (line 294) | public duplicateName2(options?: ... method duplicateName22 (line 303) | public duplicateName22(options?:... method duplicateName3 (line 312) | public duplicateName3(options?: ... method duplicateName4 (line 321) | public duplicateName4(options?: ... class NoContentServiceRequests (line 332) | class NoContentServiceRequests { method callWithNoContentResponse (line 333) | public callWithNoContentResponse... class ResponseServiceRequests (line 344) | class ResponseServiceRequests { method callWithResponseAndNoContentResponse (line 345) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 363) | public callWithDuplicateResponses(options... class NoContentServiceRequests2 (line 383) | class NoContentServiceRequests2 { method callWithResponseAndNoContentResponse (line 384) | public callWithResponseAndNoContentResponse(options?: Options<... method dummyB (line 405) | public dummyB(options?: Options<... class MultipleTags2ServiceRequests (line 416) | class MultipleTags2ServiceRequests { method dummyA (line 417) | public dummyA(options?: Options<... method dummyB (line 426) | public dummyB(options?: Options<... class MultipleTags3ServiceRequests (line 437) | class MultipleTags3ServiceRequests { method dummyB (line 438) | public dummyB(options?: Options<... class CollectionFormatServiceRequests (line 449) | class CollectionFormatServiceRequests { method collectionFormat (line 450) | public collectionFormat(options:... class TypesServiceRequests (line 461) | class TypesServiceRequests { method types (line 462) | public types(options: Options(options: Optio... class FileResponseServiceRequests (line 485) | class FileResponseServiceRequests { method fileResponse (line 486) | public fileResponse(options: Opt... class ComplexServiceRequests (line 497) | class ComplexServiceRequests { method complexTypes (line 498) | public complexTypes(options: Opt... method complexParams (line 507) | public complexParams(options: Op... class MultipartServiceRequests (line 518) | class MultipartServiceRequests { method multipartResponse (line 519) | public multipartResponse(options... method multipartRequest (line 528) | public multipartRequest(options?... class HeaderServiceRequests (line 539) | class HeaderServiceRequests { method callWithResultFromHeader (line 540) | public callWithResultFromHeader(... class ErrorServiceRequests (line 551) | class ErrorServiceRequests { method testErrorCode (line 552) | public testErrorCode(options: Op... class NonAsciiÆøåÆøÅöôêÊServiceRequests (line 563) | class NonAsciiÆøåÆøÅöôêÊServiceRequests { method nonAsciiæøåÆøÅöôêÊ字符串 (line 564) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... method putWithFormUrlEncoded (line 576) | public putWithFormUrlEncoded(opt... class DefaultServiceResources (line 587) | class DefaultServiceResources { method export (line 588) | public export(options?: () => Op... method patchApiVbyApiVersionNoTag (line 595) | public patchApiVbyApiVersionNoTag(options: () => Opt... method fooWow (line 609) | public fooWow(options?: () => Op... method getApiVbyApiVersionSimpleOperation (line 616) | public getApiVbyApiVersionSimpleOperation(options?: () => Opt... class VVersionService2 (line 633) | class VVersionService2 { method oDataControllerService (line 635) | get oDataControllerService(): ODataControllerService2 { class ApiService2 (line 640) | class ApiService2 { method vVersionService (line 642) | get vVersionService(): VVersionService2 { class SimpleServiceResources (line 648) | class SimpleServiceResources { method deleteCallWithoutParametersAndResponse (line 649) | public deleteCallWithoutParametersAndResponse(options: () => ... method callWithParameters (line 713) | public callWithParameters(option... method callWithWeirdParameterNames (line 720) | public callWithWeirdParameterNames(... method postCallWithOptionalParam (line 734) | public postCallWithOptionalParam... class DescriptionsServiceResources (line 743) | class DescriptionsServiceResources { method callWithDescriptions (line 744) | public callWithDescriptions(opti... class DeprecatedServiceResources (line 753) | class DeprecatedServiceResources { method deprecatedCall (line 757) | public deprecatedCall(options: (... class RequestBodyServiceResources (line 766) | class RequestBodyServiceResources { method postApiVbyApiVersionRequestBody (line 767) | public postApiVbyApiVersionRequestBody... method callWithDefaultOptionalParameters (line 794) | public callWithDefaultOptionalParameters(o... class DuplicateServiceResources (line 810) | class DuplicateServiceResources { method duplicateName (line 811) | public duplicateName(options?: (... method duplicateName2 (line 818) | public duplicateName2(options?: ... method duplicateName22 (line 825) | public duplicateName22(options?:... method duplicateName3 (line 832) | public duplicateName3(options?: ... method duplicateName4 (line 839) | public duplicateName4(options?: ... class NoContentServiceResources (line 848) | class NoContentServiceResources { method callWithNoContentResponse (line 849) | public callWithNoContentResponse... class ResponseServiceResources (line 858) | class ResponseServiceResources { method callWithResponseAndNoContentResponse (line 859) | public callWithResponseAndNoContentResponse(options?... method callWithDuplicateResponses (line 873) | public callWithDuplicateResponses(options... class NoContentServiceResources2 (line 889) | class NoContentServiceResources2 { method callWithResponseAndNoContentResponse (line 890) | public callWithResponseAndNoContentResponse(options?: () => Op... method dummyB (line 907) | public dummyB(options?: () => Op... class MultipleTags2ServiceResources (line 916) | class MultipleTags2ServiceResources { method dummyA (line 917) | public dummyA(options?: () => Op... method dummyB (line 924) | public dummyB(options?: () => Op... class MultipleTags3ServiceResources (line 933) | class MultipleTags3ServiceResources { method dummyB (line 934) | public dummyB(options?: () => Op... class CollectionFormatServiceResources (line 943) | class CollectionFormatServiceResources { method collectionFormat (line 944) | public collectionFormat(options:... class TypesServiceResources (line 953) | class TypesServiceResources { method types (line 954) | public types(options: () => Opti... class UploadServiceResources (line 963) | class UploadServiceResources { method uploadFile (line 964) | public uploadFile(options: () =>... class FileResponseServiceResources (line 973) | class FileResponseServiceResources { method fileResponse (line 974) | public fileResponse(options: () ... class ComplexServiceResources (line 983) | class ComplexServiceResources { method complexTypes (line 984) | public complexTypes(options: () ... method complexParams (line 991) | public complexParams(options: ()... class MultipartServiceResources (line 1000) | class MultipartServiceResources { method multipartResponse (line 1001) | public multipartResponse(options... method multipartRequest (line 1008) | public multipartRequest(options?... class HeaderServiceResources (line 1017) | class HeaderServiceResources { method callWithResultFromHeader (line 1018) | public callWithResultFromHeader(... class ErrorServiceResources (line 1027) | class ErrorServiceResources { method testErrorCode (line 1028) | public testErrorCode(options: ()... class NonAsciiÆøåÆøÅöôêÊServiceResources (line 1037) | class NonAsciiÆøåÆøÅöôêÊServiceResources { method nonAsciiæøåÆøÅöôêÊ字符串 (line 1038) | public nonAsciiæøåÆøÅöôêÊ字符串(opt... method putWithFormUrlEncoded (line 1048) | public putWithFormUrlEncoded(opt... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default-class/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@angular/common/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes-instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Domains (line 49) | class Domains extends HeyApiClient { method get (line 50) | public get(options?: Options(options?: Options(options?: Options(options?: Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/sdk.gen.ts type Options (line 7) | type Options(options?: Opti... method post (line 26) | public static post(options?: Opt... class Providers (line 31) | class Providers { class Business (line 35) | class Business { method get (line 36) | public static get(options?: Opti... class Business2 (line 43) | class Business2 { class Domains2 (line 47) | class Domains2 { method get (line 48) | public static get(options?: Opti... method post (line 52) | public static post(options?: Opt... class Providers2 (line 57) | class Providers2 { class Business3 (line 61) | class Business3 { class Providers3 (line 65) | class Providers3 { class Domains3 (line 69) | class Domains3 { method get (line 70) | public static get(options?: Opti... method post (line 74) | public static post(options?: Opt... class Providers4 (line 79) | class Providers4 { class Business4 (line 83) | class Business4 { class Domains4 (line 87) | class Domains4 { method putBusinessProvidersDomains (line 88) | public static putBusinessProvidersDomains(options?: Opti... class Locations (line 101) | class Locations { method get (line 102) | public static get(options?: Opti... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/client-fetch/sdk-nested-classes/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type BusinessProvidersDomainsGetData (line 7) | type BusinessProvidersDomainsGetData = { type BusinessProvidersDomainsGetResponses (line 14) | type BusinessProvidersDomainsGetResponses = { type BusinessProvidersDomainsGetResponse (line 21) | type BusinessProvidersDomainsGetResponse = BusinessProvidersDomainsGetRe... type BusinessProvidersDomainsPostData (line 23) | type BusinessProvidersDomainsPostData = { type BusinessProvidersDomainsPostResponses (line 30) | type BusinessProvidersDomainsPostResponses = { type BusinessProvidersDomainsPostResponse (line 37) | type BusinessProvidersDomainsPostResponse = BusinessProvidersDomainsPost... type PutBusinessProvidersDomainsData (line 39) | type PutBusinessProvidersDomainsData = { type PutBusinessProvidersDomainsResponses (line 46) | type PutBusinessProvidersDomainsResponses = { type PutBusinessProvidersDomainsResponse (line 53) | type PutBusinessProvidersDomainsResponse = PutBusinessProvidersDomainsRe... type BusinessGetData (line 55) | type BusinessGetData = { type BusinessGetResponses (line 62) | type BusinessGetResponses = { type BusinessGetResponse (line 69) | type BusinessGetResponse = BusinessGetResponses[keyof BusinessGetRespons... type GetData (line 71) | type GetData = { type GetResponses (line 78) | type GetResponses = { type GetResponse (line 85) | type GetResponse = GetResponses[keyof GetResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/default/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class Bar (line 49) | class Bar extends HeyApiClient { method post (line 50) | public post(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options<... method getFooBar (line 89) | public getFooBar(options?: Optio... method foo (line 94) | get foo(): Foo { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/instance/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/sdk/throwOnError/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-custom-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Baz (line 7) | type Baz = { type QuxAllWrite (line 11) | type QuxAllWrite = { type QuxAllRead (line 15) | type QuxAllRead = { type ReadableFooReadWrite (line 19) | type ReadableFooReadWrite = ReadableBarRead; type WritableFooReadWrite (line 21) | type WritableFooReadWrite = WritableBarRead & { type ReadableFooRead (line 25) | type ReadableFooRead = ReadableBarRead & { type WritableFooRead (line 29) | type WritableFooRead = WritableBarRead; type ReadableFooWrite (line 31) | type ReadableFooWrite = ReadableBarWrite; type WritableFooWrite (line 33) | type WritableFooWrite = WritableBarWrite & { type ReadableBarRead (line 37) | type ReadableBarRead = Baz | QuxAllRead | { type WritableBarRead (line 41) | type WritableBarRead = Baz | QuxAllWrite; type ReadableBarWrite (line 43) | type ReadableBarWrite = Baz | QuxAllRead; type WritableBarWrite (line 45) | type WritableBarWrite = Baz | QuxAllWrite | { type ReadableQuux (line 49) | type ReadableQuux = { type WritableQuux (line 54) | type WritableQuux = { type ReadableCorge (line 58) | type ReadableCorge = { type WritableCorge (line 64) | type WritableCorge = { type ReadableFooReadWriteRef (line 70) | type ReadableFooReadWriteRef = { type WritableFooReadWriteRef (line 75) | type WritableFooReadWriteRef = { type ReadableFooReadWriteRef2 (line 80) | type ReadableFooReadWriteRef2 = ReadableFooReadWrite; type WritableFooReadWriteRef2 (line 82) | type WritableFooReadWriteRef2 = WritableFooReadWrite; type Foo (line 87) | type Foo = string; type Foo2 (line 92) | type Foo2 = { type PostFooReadWriteData (line 96) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 103) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 110) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 112) | type PostFooReadData = { type PostFooReadResponses (line 119) | type PostFooReadResponses = { type PostFooReadResponse (line 126) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 128) | type PostFooWriteData = { type PostFooWriteResponses (line 135) | type PostFooWriteResponses = { type PostFooWriteResponse (line 142) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... type PutFooWriteData (line 144) | type PutFooWriteData = { type PutFooWriteResponses (line 159) | type PutFooWriteResponses = { type PutFooWriteResponse (line 166) | type PutFooWriteResponse = PutFooWriteResponses[keyof PutFooWriteRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@hey-api/typescript/transforms-read-write-ignore/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooReadWrite (line 7) | type FooReadWrite = BarRead & { type FooRead (line 11) | type FooRead = BarRead & { type FooWrite (line 15) | type FooWrite = BarWrite & { type BarRead (line 19) | type BarRead = Baz | QuxAllWrite | QuxAllRead | { type BarWrite (line 23) | type BarWrite = Baz | QuxAllWrite | QuxAllRead | { type Baz (line 27) | type Baz = { type QuxAllWrite (line 31) | type QuxAllWrite = { type QuxAllRead (line 35) | type QuxAllRead = { type Quux (line 39) | type Quux = { type Corge (line 44) | type Corge = { type FooReadWriteRef (line 53) | type FooReadWriteRef = { type FooReadWriteRef2 (line 58) | type FooReadWriteRef2 = FooReadWrite; type Foo (line 63) | type Foo = string; type Foo2 (line 68) | type Foo2 = { type PostFooReadWriteData (line 72) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 79) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 86) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 88) | type PostFooReadData = { type PostFooReadResponses (line 95) | type PostFooReadResponses = { type PostFooReadResponse (line 102) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 104) | type PostFooWriteData = { type PostFooWriteResponses (line 111) | type PostFooWriteResponses = { type PostFooWriteResponse (line 118) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... type PutFooWriteData (line 120) | type PutFooWriteData = { type PutFooWriteResponses (line 135) | type PutFooWriteResponses = { type PutFooWriteResponse (line 142) | type PutFooWriteResponse = PutFooWriteResponses[keyof PutFooWriteRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/@pinia/colada.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@pinia/colada/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/@tanstack/angular-query-experimental.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/angular-query-experimental/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/@tanstack/preact-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/@tanstack/preact-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/@tanstack/preact-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/preact-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/@tanstack/react-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/react-query/useMutation/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/@tanstack/solid-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/@tanstack/solid-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/solid-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/@tanstack/svelte-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/@tanstack/svelte-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/@tanstack/svelte-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/svelte-query/name-builder/sdk.gen.ts type Options (line 7) | type Options = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/sdk.gen.ts type Options (line 7) | type Options(options?: Opt... method put (line 26) | public static put(options?: Opti... class FooService (line 31) | class FooService { method post (line 32) | public static post(options?: Opt... method put (line 36) | public static put(options?: Opti... class FooBazService (line 43) | class FooBazService { method getFoo (line 44) | public static getFoo(options?: O... class BarService2 (line 51) | class BarService2 { method post (line 52) | public static post(options?: Opt... method put (line 56) | public static put(options?: Opti... class FooService2 (line 61) | class FooService2 { class BarBazService (line 65) | class BarBazService { method getFooBar (line 66) | public static getFooBar(options?... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/asClass/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type FooPostData (line 23) | type FooPostData = { type FooPostResponses (line 30) | type FooPostResponses = { type FooPostResponse (line 37) | type FooPostResponse = FooPostResponses[keyof FooPostResponses]; type FooPutData (line 39) | type FooPutData = { type FooPutResponses (line 46) | type FooPutResponses = { type FooPutResponse (line 53) | type FooPutResponse = FooPutResponses[keyof FooPutResponses]; type GetFooBarData (line 55) | type GetFooBarData = { type GetFooBarResponses (line 62) | type GetFooBarResponses = { type GetFooBarResponse (line 69) | type GetFooBarResponse = GetFooBarResponses[keyof GetFooBarResponses]; type FooBarPostData (line 71) | type FooBarPostData = { type FooBarPostResponses (line 78) | type FooBarPostResponses = { type FooBarPostResponse (line 85) | type FooBarPostResponse = FooBarPostResponses[keyof FooBarPostResponses]; type FooBarPutData (line 87) | type FooBarPutData = { type FooBarPutResponses (line 94) | type FooBarPutResponses = { type FooBarPutResponse (line 101) | type FooBarPutResponse = FooBarPutResponses[keyof FooBarPutResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/@tanstack/vue-query.gen.ts type QueryKey (line 10) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/axios/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/@tanstack/vue-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/fetch/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/@tanstack/vue-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/plugins/@tanstack/vue-query/name-builder/sdk.gen.ts type Options (line 7) | type Options; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/ref-deep/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 16) | type Bar = { type GetFooData (line 25) | type GetFooData = { type GetFooResponses (line 32) | type GetFooResponses = { type GetFooResponse (line 42) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type PostFooData (line 44) | type PostFooData = { type PostFooResponses (line 51) | type PostFooResponses = { type PostFooResponse (line 64) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/ref-type/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 13) | type Bar = { type GetFooData (line 17) | type GetFooData = { type GetFooResponses (line 24) | type GetFooResponses = { type GetFooResponse (line 31) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/required-all-of-ref/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/required-any-of-ref/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/required-one-of-ref/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 12) | type Bar = Foo & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/schema-const/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-api-key/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-false/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-http-bearer/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-oauth2/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/security-open-id-connect/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/servers/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 21) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/client/client.gen.ts function provideHeyApiClient (line 33) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/client/types.gen.ts type ResponseStyle (line 20) | type ResponseStyle = 'data' | 'fields'; type Config (line 22) | interface Config type RequestOptions (line 59) | interface RequestOptions< type ResolvedRequestOptions (line 98) | interface ResolvedRequestOptions< type RequestResult (line 106) | type RequestResult< type ClientOptions (line 141) | interface ClientOptions { type MethodFn (line 147) | type MethodFn = < type SseFn (line 156) | type SseFn = < type RequestFn (line 165) | type RequestFn = < type RequestOptionsFn (line 175) | type RequestOptionsFn = < type BuildUrlFn (line 183) | type BuildUrlFn = < type Client (line 194) | type Client = CoreClient... type CreateClientConfig (line 212) | type CreateClientConfig = ( type TDataShape (line 216) | interface TDataShape { type OmitKeys (line 224) | type OmitKeys = Pick>; type Options (line 226) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/client/utils.gen.ts type PathSerializer (line 17) | interface PathSerializer { constant PATH_PARAM_RE (line 22) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 24) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 25) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 26) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 315) | type ErrInterceptor = ( type ReqInterceptor (line 322) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 324) | type ResInterceptor = ( class Interceptors (line 330) | class Interceptors { method clear (line 333) | clear(): void { method eject (line 337) | eject(id: number | Interceptor): void { method exists (line 344) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 349) | getInterceptorIndex(id: number | Interceptor): number { method update (line 356) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 365) | use(fn: Interceptor): number { type Middleware (line 371) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-angular/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/client/types.gen.ts type Config (line 19) | interface Config type RequestOptions (line 52) | interface RequestOptions< type ClientOptions (line 85) | interface ClientOptions { type RequestResult (line 90) | type RequestResult< type MethodFn (line 106) | type MethodFn = ... type CreateClientConfig (line 142) | type CreateClientConfig = ( type TDataShape (line 146) | interface TDataShape { type OmitKeys (line 154) | type OmitKeys = Pick>; type Options (line 156) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-axios/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-fetch/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/client/types.gen.ts type Config (line 11) | interface Config type RequestOptions (line 41) | interface RequestOptions< type ResolvedRequestOptions (line 74) | interface ResolvedRequestOptions< type RequestResult (line 81) | type RequestResult< type ClientOptions (line 105) | interface ClientOptions { type MethodFn (line 110) | type MethodFn = ... type CreateClientConfig (line 146) | type CreateClientConfig = ( type TDataShape (line 150) | interface TDataShape { type OmitKeys (line 158) | type OmitKeys = Pick>; type Options (line 160) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/client/utils.gen.ts type PathSerializer (line 16) | interface PathSerializer { constant PATH_PARAM_RE (line 21) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 23) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 24) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 25) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 328) | type ErrInterceptor = ( type ReqInterceptor (line 334) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 336) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 338) | class Interceptors { method clear (line 341) | clear(): void { method eject (line 345) | eject(id: number | Interceptor): void { method exists (line 352) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 357) | getInterceptorIndex(id: number | Interceptor): number { method update (line 364) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 373) | use(fn: Interceptor): number { type Middleware (line 379) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-next/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/client/types.gen.ts type ArraySeparatorStyle (line 21) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 24) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 25) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 27) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 29) | type WithRefs = { type KeysOf (line 36) | type KeysOf = Array type RequestOptions (line 57) | interface RequestOptions< type RequestResult (line 94) | type RequestResult< type ClientOptions (line 110) | interface ClientOptions { type MethodFn (line 114) | type MethodFn = < type SseFn (line 123) | type SseFn = < type RequestFn (line 132) | type RequestFn = < type CreateClientConfig (line 150) | type CreateClientConfig = ( type TDataShape (line 154) | interface TDataShape { type BuildUrlOptions (line 162) | type BuildUrlOptions< type BuildUrlFn (line 168) | type BuildUrlFn = >( type Client (line 172) | type Client = CoreClient; type OmitKeys (line 174) | type OmitKeys = Pick>; type Options (line 176) | type Options< type FetchOptions (line 184) | type FetchOptions = Omit, keyof Asy... type Composable (line 186) | type Composable = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/client/utils.gen.ts type PathSerializer (line 24) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 26) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 28) | type MaybeArray = T | T[]; type UnwrapRefs (line 335) | type UnwrapRefs = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-nuxt/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/client/client.gen.ts type ReqInit (line 25) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/client/types.gen.ts type ResponseStyle (line 14) | type ResponseStyle = 'data' | 'fields'; type Config (line 16) | interface Config type RequestOptions (line 120) | interface RequestOptions< type ResolvedRequestOptions (line 154) | interface ResolvedRequestOptions< type RequestResult (line 162) | type RequestResult< type ClientOptions (line 197) | interface ClientOptions { type MethodFn (line 203) | type MethodFn = < type SseFn (line 212) | type SseFn = < type RequestFn (line 221) | type RequestFn = < type BuildUrlFn (line 231) | type BuildUrlFn = < type Client (line 242) | type Client = CoreClient... type CreateClientConfig (line 254) | type CreateClientConfig = ( type TDataShape (line 258) | interface TDataShape { type OmitKeys (line 266) | type OmitKeys = Pick>; type Options (line 268) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/client/utils.gen.ts type ErrInterceptor (line 408) | type ErrInterceptor = ( type ReqInterceptor (line 415) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 417) | type ResInterceptor = ( class Interceptors (line 423) | class Interceptors { method clear (line 426) | clear(): void { method eject (line 430) | eject(id: number | Interceptor): void { method exists (line 437) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 442) | getInterceptorIndex(id: number | Interceptor): number { method update (line 449) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 458) | use(fn: Interceptor): number { type Middleware (line 464) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-ofetch/sdk.gen.ts type Options (line 7) | type Options; type Range (line 17) | type Range = { type SymbolSource (line 28) | type SymbolSource = { type FilePartSourceText (line 37) | type FilePartSourceText = { type FileSource (line 43) | type FileSource = { type FilePartSource (line 49) | type FilePartSource = FileSource | SymbolSource; type EventGlobalDisposed (line 51) | type EventGlobalDisposed = { type EventServerConnected (line 58) | type EventServerConnected = { type EventPtyDeleted (line 65) | type EventPtyDeleted = { type EventPtyExited (line 72) | type EventPtyExited = { type EventPtyUpdated (line 80) | type EventPtyUpdated = { type Pty (line 87) | type Pty = { type EventPtyCreated (line 97) | type EventPtyCreated = { type EventVcsBranchUpdated (line 104) | type EventVcsBranchUpdated = { type EventFileWatcherUpdated (line 111) | type EventFileWatcherUpdated = { type EventSessionError (line 119) | type EventSessionError = { type ApiError (line 127) | type ApiError = { type MessageAbortedError (line 143) | type MessageAbortedError = { type MessageOutputLengthError (line 150) | type MessageOutputLengthError = { type UnknownError (line 157) | type UnknownError = { type ProviderAuthError (line 164) | type ProviderAuthError = { type EventSessionDiff (line 172) | type EventSessionDiff = { type FileDiff (line 180) | type FileDiff = { type EventSessionDeleted (line 188) | type EventSessionDeleted = { type Session (line 195) | type Session = { type EventSessionUpdated (line 226) | type EventSessionUpdated = { type EventSessionCreated (line 233) | type EventSessionCreated = { type EventCommandExecuted (line 240) | type EventCommandExecuted = { type EventMcpToolsChanged (line 250) | type EventMcpToolsChanged = { type EventTuiToastShow (line 257) | type EventTuiToastShow = { type EventTuiCommandExecute (line 270) | type EventTuiCommandExecute = { type EventTuiPromptAppend (line 277) | type EventTuiPromptAppend = { type Todo (line 284) | type Todo = { type EventTodoUpdated (line 303) | type EventTodoUpdated = { type EventFileEdited (line 311) | type EventFileEdited = { type EventSessionCompacted (line 318) | type EventSessionCompacted = { type EventSessionIdle (line 325) | type EventSessionIdle = { type SessionStatus (line 332) | type SessionStatus = { type EventSessionStatus (line 343) | type EventSessionStatus = { type EventPermissionReplied (line 351) | type EventPermissionReplied = { type PermissionRequest (line 360) | type PermissionRequest = { type EventPermissionAsked (line 375) | type EventPermissionAsked = { type EventMessagePartRemoved (line 380) | type EventMessagePartRemoved = { type CompactionPart (line 389) | type CompactionPart = { type RetryPart (line 397) | type RetryPart = { type AgentPart (line 409) | type AgentPart = { type PatchPart (line 422) | type PatchPart = { type SnapshotPart (line 431) | type SnapshotPart = { type StepFinishPart (line 439) | type StepFinishPart = { type StepStartPart (line 458) | type StepStartPart = { type ToolStateError (line 466) | type ToolStateError = { type ToolStateCompleted (line 481) | type ToolStateCompleted = { type FilePart (line 499) | type FilePart = { type ToolStateRunning (line 510) | type ToolStateRunning = { type ToolStatePending (line 524) | type ToolStatePending = { type ToolState (line 532) | type ToolState = ToolStatePending | ToolStateRunning | ToolStateComplete... type ToolPart (line 534) | type ToolPart = { type ReasoningPart (line 547) | type ReasoningPart = { type TextPart (line 562) | type TextPart = { type Part (line 579) | type Part = TextPart | { type EventMessagePartUpdated (line 590) | type EventMessagePartUpdated = { type EventMessageRemoved (line 598) | type EventMessageRemoved = { type AssistantMessage (line 606) | type AssistantMessage = { type UserMessage (line 638) | type UserMessage = { type Message (line 662) | type Message = UserMessage | AssistantMessage; type EventMessageUpdated (line 664) | type EventMessageUpdated = { type EventLspUpdated (line 671) | type EventLspUpdated = { type EventLspClientDiagnostics (line 678) | type EventLspClientDiagnostics = { type EventServerInstanceDisposed (line 686) | type EventServerInstanceDisposed = { type Project (line 693) | type Project = { type EventProjectUpdated (line 709) | type EventProjectUpdated = { type EventInstallationUpdateAvailable (line 714) | type EventInstallationUpdateAvailable = { type EventInstallationUpdated (line 721) | type EventInstallationUpdated = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type EventSubscribeData (line 730) | type EventSubscribeData = { type EventSubscribeResponses (line 739) | type EventSubscribeResponses = { type EventSubscribeResponse (line 746) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/@tanstack/react-query.gen.ts type QueryKey (line 9) | type QueryKey = [ FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/sse-tanstack-react-query/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-all-of/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { type Bar (line 11) | type Bar = { type Baz (line 16) | type Baz = Omit & { type Qux (line 24) | type Qux = { type GetFooData (line 31) | type GetFooData = { type GetFooResponses (line 38) | type GetFooResponses = { type GetFooResponse (line 45) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-allof-response-wrapper/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type PaginatedResponse (line 7) | type PaginatedResponse = { type RepositorySecret (line 16) | type RepositorySecret = { type ListSecretsData (line 23) | type ListSecretsData = { type ListSecretsResponses (line 30) | type ListSecretsResponses = { type ListSecretsResponse (line 41) | type ListSecretsResponse = ListSecretsResponses[keyof ListSecretsRespons... type CreateSecretData (line 43) | type CreateSecretData = { type CreateSecretResponses (line 50) | type CreateSecretResponses = { type CreateSecretResponse (line 57) | type CreateSecretResponse = CreateSecretResponses[keyof CreateSecretResp... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-any-of-null/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Poll (line 7) | type Poll = { type NestedDateObject (line 15) | type NestedDateObject = { type Foo (line 21) | type Foo = { type GetFooData (line 28) | type GetFooData = { type GetFooResponses (line 35) | type GetFooResponses = { type GetFooResponse (line 42) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; type GetPollData (line 44) | type GetPollData = { type GetPollResponses (line 51) | type GetPollResponses = { type GetPollResponse (line 58) | type GetPollResponse = GetPollResponses[keyof GetPollResponses]; type GetNullablePollData (line 60) | type GetNullablePollData = { type GetNullablePollResponses (line 67) | type GetNullablePollResponses = { type GetNullablePollResponse (line 74) | type GetNullablePollResponse = GetNullablePollResponses[keyof GetNullabl... type NestedDateObjectData (line 76) | type NestedDateObjectData = { type NestedDateObjectResponses (line 83) | type NestedDateObjectResponses = { type NestedDateObjectResponse (line 90) | type NestedDateObjectResponse = NestedDateObjectResponses[keyof NestedDa... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-array/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type GetFooData (line 7) | type GetFooData = { type GetFooResponses (line 14) | type GetFooResponses = { type GetFooResponse (line 25) | type GetFooResponse = GetFooResponses[keyof GetFooResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-one-of-discriminated/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Rule (line 7) | type Rule = { type Then (line 16) | type Then = ({ type DirectAction (line 26) | type DirectAction = { type RoundRobinAction (line 31) | type RoundRobinAction = { type CategoryAction (line 37) | type CategoryAction = { type StatusAction (line 42) | type StatusAction = { type ListRulesData (line 47) | type ListRulesData = { type ListRulesResponses (line 54) | type ListRulesResponses = { type ListRulesResponse (line 63) | type ListRulesResponse = ListRulesResponses[keyof ListRulesResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transformers-recursive/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type TreeNode (line 7) | type TreeNode = { type GetTreeData (line 14) | type GetTreeData = { type GetTreeResponses (line 21) | type GetTreeResponses = { type GetTreeResponse (line 28) | type GetTreeResponse = GetTreeResponses[keyof GetTreeResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write-nested/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type CreateItemRequest (line 7) | type CreateItemRequest = { type Payload (line 11) | type Payload = { type CreateItemRequestWritable (line 15) | type CreateItemRequestWritable = { type PayloadWritable (line 19) | type PayloadWritable = { type ItemCreateData (line 27) | type ItemCreateData = { type ItemCreateResponses (line 34) | type ItemCreateResponses = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write-response/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type ItemListResponse (line 7) | type ItemListResponse = { type Item (line 11) | type Item = { type ItemListResponseWritable (line 23) | type ItemListResponseWritable = { type ItemWritable (line 27) | type ItemWritable = { type ItemListData (line 31) | type ItemListData = { type ItemListResponses (line 38) | type ItemListResponses = { type ItemListResponse2 (line 45) | type ItemListResponse2 = ItemListResponses[keyof ItemListResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write-unevaluated/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type DisposableEmail (line 7) | type DisposableEmail = { type DisposableEmailWritable (line 15) | type DisposableEmailWritable = { type GetXData (line 22) | type GetXData = { type GetXResponses (line 29) | type GetXResponses = { type GetXResponse (line 36) | type GetXResponse = GetXResponses[keyof GetXResponses]; type CreateXData (line 38) | type CreateXData = { type CreateXResponses (line 45) | type CreateXResponses = { type CreateXResponse (line 52) | type CreateXResponse = CreateXResponses[keyof CreateXResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-read-write/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type FooReadWrite (line 7) | type FooReadWrite = BarRead; type FooRead (line 9) | type FooRead = BarRead & { type FooWrite (line 13) | type FooWrite = BarWrite; type BarRead (line 15) | type BarRead = Baz | QuxAllRead | { type BarWrite (line 19) | type BarWrite = Baz | QuxAllRead; type Baz (line 21) | type Baz = { type QuxAllWrite (line 25) | type QuxAllWrite = { type QuxAllRead (line 29) | type QuxAllRead = { type Quux (line 33) | type Quux = { type Corge (line 38) | type Corge = { type FooReadWriteRef (line 44) | type FooReadWriteRef = { type FooReadWriteRef2 (line 49) | type FooReadWriteRef2 = FooReadWrite; type FooReadWriteWritable (line 51) | type FooReadWriteWritable = BarReadWritable & { type FooReadWritable (line 55) | type FooReadWritable = BarReadWritable; type FooWriteWritable (line 57) | type FooWriteWritable = BarWriteWritable & { type BarReadWritable (line 61) | type BarReadWritable = Baz | QuxAllWrite; type BarWriteWritable (line 63) | type BarWriteWritable = Baz | QuxAllWrite | { type QuuxWritable (line 67) | type QuuxWritable = { type CorgeWritable (line 71) | type CorgeWritable = { type FooReadWriteRefWritable (line 77) | type FooReadWriteRefWritable = { type FooReadWriteRef2Writable (line 82) | type FooReadWriteRef2Writable = FooReadWriteWritable; type Foo (line 87) | type Foo = string; type Foo2 (line 92) | type Foo2 = { type PostFooReadWriteData (line 96) | type PostFooReadWriteData = { type PostFooReadWriteResponses (line 103) | type PostFooReadWriteResponses = { type PostFooReadWriteResponse (line 110) | type PostFooReadWriteResponse = PostFooReadWriteResponses[keyof PostFooR... type PostFooReadData (line 112) | type PostFooReadData = { type PostFooReadResponses (line 119) | type PostFooReadResponses = { type PostFooReadResponse (line 126) | type PostFooReadResponse = PostFooReadResponses[keyof PostFooReadRespons... type PostFooWriteData (line 128) | type PostFooWriteData = { type PostFooWriteResponses (line 135) | type PostFooWriteResponses = { type PostFooWriteResponse (line 142) | type PostFooWriteResponse = PostFooWriteResponses[keyof PostFooWriteResp... type PutFooWriteData (line 144) | type PutFooWriteData = { type PutFooWriteResponses (line 159) | type PutFooWriteResponses = { type PutFooWriteResponse (line 166) | type PutFooWriteResponse = PutFooWriteResponses[keyof PutFooWriteRespons... FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/transforms-schemas-name/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type User (line 7) | type User = { type UserProfile (line 13) | type UserProfile = { type Post (line 18) | type Post = { type Comment (line 25) | type Comment = { type GetUsersData (line 31) | type GetUsersData = { type GetUsersResponses (line 38) | type GetUsersResponses = { type GetUsersResponse (line 45) | type GetUsersResponse = GetUsersResponses[keyof GetUsersResponses]; type PostPostsData (line 47) | type PostPostsData = { type PostPostsResponses (line 54) | type PostPostsResponses = { type PostPostsResponse (line 61) | type PostPostsResponse = PostPostsResponses[keyof PostPostsResponses]; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/type-invalid/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = unknown; FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/union-types/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Foo (line 7) | type Foo = { FILE: packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/webhooks/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type Webhooks (line 7) | type Webhooks = SessionUserPhoneCalloutRingingWebhookRequest | SessionUs... type SessionUserPhoneCalloutRingingWebhookPayload (line 26) | type SessionUserPhoneCalloutRingingWebhookPayload = { type SessionUserPhoneCalloutRingingWebhookRequest (line 97) | type SessionUserPhoneCalloutRingingWebhookRequest = { type SessionUserRoomSystemCalloutRingingWebhookPayload (line 120) | type SessionUserRoomSystemCalloutRingingWebhookPayload = { type SessionUserRoomSystemCalloutRingingWebhookRequest (line 188) | type SessionUserRoomSystemCalloutRingingWebhookRequest = { type SessionRecordingStartedWebhookPayload (line 221) | type SessionRecordingStartedWebhookPayload = { type SessionRecordingStartedWebhookRequest (line 273) | type SessionRecordingStartedWebhookRequest = { type SessionRecordingResumedWebhookPayload (line 306) | type SessionRecordingResumedWebhookPayload = { type SessionRecordingResumedWebhookRequest (line 358) | type SessionRecordingResumedWebhookRequest = { type SessionLiveStreamingStoppedWebhookPayload (line 385) | type SessionLiveStreamingStoppedWebhookPayload = { type SessionLiveStreamingStoppedWebhookRequest (line 463) | type SessionLiveStreamingStoppedWebhookRequest = { type SessionStreamIngestionStoppedWebhookPayload (line 484) | type SessionStreamIngestionStoppedWebhookPayload = { type SessionStreamIngestionStoppedWebhookRequest (line 547) | type SessionStreamIngestionStoppedWebhookRequest = { type SessionUserRoomSystemCalloutRejectedWebhookPayload (line 570) | type SessionUserRoomSystemCalloutRejectedWebhookPayload = { type SessionUserRoomSystemCalloutRejectedWebhookRequest (line 638) | type SessionUserRoomSystemCalloutRejectedWebhookRequest = { type SessionAlertWebhookPayload (line 672) | type SessionAlertWebhookPayload = { type SessionAlertWebhookRequest (line 714) | type SessionAlertWebhookRequest = { type SessionSharingEndedWebhookPayload (line 741) | type SessionSharingEndedWebhookPayload = { type SessionSharingEndedWebhookRequest (line 815) | type SessionSharingEndedWebhookRequest = { type SessionRecordingPausedWebhookPayload (line 848) | type SessionRecordingPausedWebhookPayload = { type SessionRecordingPausedWebhookRequest (line 900) | type SessionRecordingPausedWebhookRequest = { type SessionEndedWebhookPayload (line 927) | type SessionEndedWebhookPayload = { type SessionEndedWebhookRequest (line 975) | type SessionEndedWebhookRequest = { type SessionStartedWebhookPayload (line 1002) | type SessionStartedWebhookPayload = { type SessionStartedWebhookRequest (line 1046) | type SessionStartedWebhookRequest = { type SessionStreamIngestionUnbindWebhookPayload (line 1067) | type SessionStreamIngestionUnbindWebhookPayload = { type SessionStreamIngestionUnbindWebhookRequest (line 1130) | type SessionStreamIngestionUnbindWebhookRequest = { type SessionLiveStreamingStartedWebhookPayload (line 1157) | type SessionLiveStreamingStartedWebhookPayload = { type SessionLiveStreamingStartedWebhookRequest (line 1235) | type SessionLiveStreamingStartedWebhookRequest = { type SessionUserRoomSystemCalloutMissedWebhookPayload (line 1258) | type SessionUserRoomSystemCalloutMissedWebhookPayload = { type SessionUserRoomSystemCalloutMissedWebhookRequest (line 1326) | type SessionUserRoomSystemCalloutMissedWebhookRequest = { type SessionUserPhoneCalloutAcceptedWebhookPayload (line 1349) | type SessionUserPhoneCalloutAcceptedWebhookPayload = { type SessionUserPhoneCalloutAcceptedWebhookRequest (line 1420) | type SessionUserPhoneCalloutAcceptedWebhookRequest = { type SessionUserLeftWebhookPayload (line 1444) | type SessionUserLeftWebhookPayload = { type SessionUserLeftWebhookRequest (line 1527) | type SessionUserLeftWebhookRequest = { type SessionSharingStartedWebhookPayload (line 1553) | type SessionSharingStartedWebhookPayload = { type SessionSharingStartedWebhookRequest (line 1625) | type SessionSharingStartedWebhookRequest = { type SessionUserPhoneCalloutCanceledWebhookPayload (line 1646) | type SessionUserPhoneCalloutCanceledWebhookPayload = { type SessionUserPhoneCalloutCanceledWebhookRequest (line 1701) | type SessionUserPhoneCalloutCanceledWebhookRequest = { type SessionRecordingTranscriptCompletedWebhookPayload (line 1734) | type SessionRecordingTranscriptCompletedWebhookPayload = { type SessionRecordingTranscriptCompletedWebhookRequest (line 1876) | type SessionRecordingTranscriptCompletedWebhookRequest = { type SessionRecordingDeletedWebhookPayload (line 1912) | type SessionRecordingDeletedWebhookPayload = { type SessionRecordingDeletedWebhookRequest (line 1962) | type SessionRecordingDeletedWebhookRequest = { type SessionUserRoomSystemCalloutFailedWebhookPayload (line 1985) | type SessionUserRoomSystemCalloutFailedWebhookPayload = { type SessionUserRoomSystemCalloutFailedWebhookRequest (line 2072) | type SessionUserRoomSystemCalloutFailedWebhookRequest = { type SessionRecordingCompletedWebhookPayload (line 2105) | type SessionRecordingCompletedWebhookPayload = { type SessionRecordingCompletedWebhookRequest (line 2375) | type SessionRecordingCompletedWebhookRequest = { type SessionRecordingTranscriptFailedWebhookPayload (line 2408) | type SessionRecordingTranscriptFailedWebhookPayload = { type SessionRecordingTranscriptFailedWebhookRequest (line 2450) | type SessionRecordingTranscriptFailedWebhookRequest = { type SessionRecordingTrashedWebhookPayload (line 2486) | type SessionRecordingTrashedWebhookPayload = { type SessionRecordingTrashedWebhookRequest (line 2536) | type SessionRecordingTrashedWebhookRequest = { type SessionUserJoinedWebhookPayload (line 2563) | type SessionUserJoinedWebhookPayload = { type SessionUserJoinedWebhookRequest (line 2630) | type SessionUserJoinedWebhookRequest = { type SessionStreamIngestionStartedWebhookPayload (line 2651) | type SessionStreamIngestionStartedWebhookPayload = { type SessionStreamIngestionStartedWebhookRequest (line 2714) | type SessionStreamIngestionStartedWebhookRequest = { type SessionStreamIngestionConnectedWebhookPayload (line 2735) | type SessionStreamIngestionConnectedWebhookPayload = { type SessionStreamIngestionConnectedWebhookRequest (line 2798) | type SessionStreamIngestionConnectedWebhookRequest = { type SessionStreamIngestionDisconnectedWebhookPayload (line 2819) | type SessionStreamIngestionDisconnectedWebhookPayload = { type SessionStreamIngestionDisconnectedWebhookRequest (line 2882) | type SessionStreamIngestionDisconnectedWebhookRequest = { type SessionRecordingRecoveredWebhookPayload (line 2918) | type SessionRecordingRecoveredWebhookPayload = { type SessionRecordingRecoveredWebhookRequest (line 2968) | type SessionRecordingRecoveredWebhookRequest = { type SessionUserPhoneCalloutMissedWebhookPayload (line 2992) | type SessionUserPhoneCalloutMissedWebhookPayload = { type SessionUserPhoneCalloutMissedWebhookRequest (line 3063) | type SessionUserPhoneCalloutMissedWebhookRequest = { type SessionUserPhoneCalloutRejectedWebhookPayload (line 3087) | type SessionUserPhoneCalloutRejectedWebhookPayload = { type SessionUserPhoneCalloutRejectedWebhookRequest (line 3158) | type SessionUserPhoneCalloutRejectedWebhookRequest = { type SessionUserRoomSystemCalloutAcceptedWebhookPayload (line 3181) | type SessionUserRoomSystemCalloutAcceptedWebhookPayload = { type SessionUserRoomSystemCalloutAcceptedWebhookRequest (line 3249) | type SessionUserRoomSystemCalloutAcceptedWebhookRequest = { type SessionRecordingStoppedWebhookPayload (line 3282) | type SessionRecordingStoppedWebhookPayload = { type SessionRecordingStoppedWebhookRequest (line 3334) | type SessionRecordingStoppedWebhookRequest = { FILE: packages/openapi-ts-tests/main/test/custom/client/client.ts type ReqInit (line 12) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/main/test/custom/client/core/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts-tests/main/test/custom/client/core/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/main/test/custom/client/core/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 15) | interface Fields { type FieldsConfig (line 20) | type FieldsConfig = ReadonlyArray; type KeyMap (line 30) | type KeyMap = Map< type Params (line 59) | interface Params { FILE: packages/openapi-ts-tests/main/test/custom/client/core/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/main/test/custom/client/core/types.ts type Client (line 4) | interface Client; FILE: packages/openapi-ts-tests/main/test/custom/client/types.ts type Config (line 5) | interface Config type RequestOptions (line 35) | interface RequestOptions< type RequestResult (line 56) | type RequestResult< type ClientOptions (line 73) | interface ClientOptions { type MethodFn (line 78) | type MethodFn = & { type CreateClientConfig (line 110) | type CreateClientConfig = ( type TDataShape (line 114) | interface TDataShape { type OmitKeys (line 122) | type OmitKeys = Pick>; type Options (line 124) | type Options< FILE: packages/openapi-ts-tests/main/test/custom/client/utils.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 19) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 20) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 304) | type ErrInterceptor = ( type ReqInterceptor (line 311) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 313) | type ResInterceptor = ( class Interceptors (line 319) | class Interceptors { method clear (line 322) | clear(): void { method eject (line 326) | eject(id: number | Interceptor): void { method exists (line 333) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 338) | getInterceptorIndex(id: number | Interceptor): number { method update (line 345) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 354) | use(fn: Interceptor): number { type Middleware (line 360) | interface Middleware { FILE: packages/openapi-ts-tests/nestjs/v11/__snapshots__/2.0.x/default/nestjs.gen.ts type DefaultControllerMethods (line 5) | type DefaultControllerMethods = { type SimpleControllerMethods (line 12) | type SimpleControllerMethods = { type DescriptionsControllerMethods (line 22) | type DescriptionsControllerMethods = { type ParametersControllerMethods (line 26) | type ParametersControllerMethods = { type DefaultsControllerMethods (line 31) | type DefaultsControllerMethods = { type DuplicateControllerMethods (line 37) | type DuplicateControllerMethods = { type NoContentControllerMethods (line 44) | type NoContentControllerMethods = { type ResponseControllerMethods (line 48) | type ResponseControllerMethods = { type MultipleTags1ControllerMethods (line 55) | type MultipleTags1ControllerMethods = { type CollectionFormatControllerMethods (line 60) | type CollectionFormatControllerMethods = { type TypesControllerMethods (line 64) | type TypesControllerMethods = { type ComplexControllerMethods (line 68) | type ComplexControllerMethods = { type HeaderControllerMethods (line 72) | type HeaderControllerMethods = { type ErrorControllerMethods (line 76) | type ErrorControllerMethods = { type NonAsciiÆøåÆøÅöôêÊControllerMethods (line 80) | type NonAsciiÆøåÆøÅöôêÊControllerMethods = { FILE: packages/openapi-ts-tests/nestjs/v11/__snapshots__/2.0.x/default/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type ExternalRefA (line 7) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 9) | type ExternalRefB = ExternalSharedModel; type CommentWithBreaks (line 17) | type CommentWithBreaks = number; type CommentWithBackticks (line 22) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 27) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 32) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 37) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 42) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 47) | type CommentWithReservedCharacters = number; type SimpleInteger (line 52) | type SimpleInteger = number; type SimpleBoolean (line 57) | type SimpleBoolean = boolean; type SimpleString (line 62) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 67) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 72) | type SimpleFile = Blob | File; type SimpleReference (line 74) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 79) | type SimpleStringWithPattern = string; type EnumWithStrings (line 84) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithNumbers (line 89) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 94) | type EnumFromDescription = number; type EnumWithExtensions (line 99) | type EnumWithExtensions = 200 | 400 | 500; type ArrayWithNumbers (line 104) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 109) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 114) | type ArrayWithStrings = Array; type ArrayWithReferences (line 119) | type ArrayWithReferences = Array; type ArrayWithArray (line 124) | type ArrayWithArray = Array>; type ArrayWithProperties (line 129) | type ArrayWithProperties = Array<{ type DictionaryWithString (line 137) | type DictionaryWithString = { type DictionaryWithReference (line 144) | type DictionaryWithReference = { type DictionaryWithArray (line 151) | type DictionaryWithArray = { type DictionaryWithDictionary (line 158) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 167) | type DictionaryWithProperties = { type Date (line 177) | type Date = string; type ModelWithInteger (line 182) | type ModelWithInteger = { type ModelWithBoolean (line 192) | type ModelWithBoolean = { type ModelWithString (line 202) | type ModelWithString = { type ModelWithStringError (line 212) | type ModelWithStringError = { type ModelWithNullableString (line 222) | type ModelWithNullableString = { type ModelWithEnum (line 236) | type ModelWithEnum = { type ModelWithEnumFromDescription (line 254) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 264) | type ModelWithNestedEnums = { type ModelWithReference (line 278) | type ModelWithReference = { type ModelWithArray (line 285) | type ModelWithArray = { type ModelWithDictionary (line 294) | type ModelWithDictionary = { type ModelWithCircularReference (line 303) | type ModelWithCircularReference = { type ModelWithProperties (line 310) | type ModelWithProperties = { type ModelWithNestedProperties (line 327) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 338) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 345) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 354) | type ModelWithDuplicateImports = { type ModelThatExtends (line 363) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 371) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type Default (line 376) | type Default = { type ModelWithPattern (line 383) | type ModelWithPattern = { type ParameterActivityParams (line 396) | type ParameterActivityParams = { type ResponsePostActivityResponse (line 404) | type ResponsePostActivityResponse = { type FailureFailure (line 412) | type FailureFailure = { type ExternalSharedModel (line 418) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 426) | type ModelWithReferenceWritable = { type ModelWithPropertiesWritable (line 433) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 447) | type ModelWithPatternWritable = { type ServiceWithEmptyTagData (line 458) | type ServiceWithEmptyTagData = { type PatchApiVbyApiVersionNoTagData (line 465) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 472) | type PatchApiVbyApiVersionNoTagResponses = { type FooWowData (line 479) | type FooWowData = { type FooWowResponses (line 486) | type FooWowResponses = { type DeleteCallWithoutParametersAndResponseData (line 493) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 500) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 507) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 514) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 521) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 528) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 535) | type PutCallWithoutParametersAndResponseData = { type CallWithDescriptionsData (line 542) | type CallWithDescriptionsData = { type CallWithParametersData (line 577) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 604) | type CallWithWeirdParameterNamesData = { type CallWithDefaultParametersData (line 646) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 679) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 703) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 743) | type DuplicateNameData = { type DuplicateName2Data (line 750) | type DuplicateName2Data = { type DuplicateName3Data (line 757) | type DuplicateName3Data = { type DuplicateName4Data (line 764) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 771) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 778) | type CallWithNoContentResponseResponses = { type CallWithResponseAndNoContentResponseData (line 785) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 792) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 803) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 805) | type DummyAData = { type DummyAResponses (line 812) | type DummyAResponses = { type DummyBData (line 819) | type DummyBData = { type DummyBResponses (line 826) | type DummyBResponses = { type CallWithResponseData (line 833) | type CallWithResponseData = { type CallWithResponseResponses (line 840) | type CallWithResponseResponses = { type CallWithResponseResponse (line 847) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 849) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 856) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 875) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 877) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 888) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 890) | type CallWithResponsesData = { type CallWithResponsesErrors (line 897) | type CallWithResponsesErrors = { type CallWithResponsesError (line 916) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 918) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 937) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 939) | type CollectionFormatData = { type TypesData (line 967) | type TypesData = { type TypesResponses (line 1006) | type TypesResponses = { type TypesResponse (line 1027) | type TypesResponse = TypesResponses[keyof TypesResponses]; type ComplexTypesData (line 1029) | type ComplexTypesData = { type ComplexTypesErrors (line 1056) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1067) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1074) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type CallWithResultFromHeaderData (line 1076) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 1083) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 1094) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 1101) | type TestErrorCodeData = { type TestErrorCodeErrors (line 1113) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 1132) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 1139) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 1151) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 1158) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PostApiVbyApiVersionBodyData (line 1160) | type PostApiVbyApiVersionBodyData = { type PostApiVbyApiVersionBodyErrors (line 1170) | type PostApiVbyApiVersionBodyErrors = { type PostApiVbyApiVersionBodyError (line 1181) | type PostApiVbyApiVersionBodyError = PostApiVbyApiVersionBodyErrors[keyo... type PostApiVbyApiVersionBodyResponses (line 1183) | type PostApiVbyApiVersionBodyResponses = { type PostApiVbyApiVersionBodyResponse (line 1190) | type PostApiVbyApiVersionBodyResponse = PostApiVbyApiVersionBodyResponse... FILE: packages/openapi-ts-tests/nestjs/v11/__snapshots__/3.0.x/default/nestjs.gen.ts type DefaultControllerMethods (line 5) | type DefaultControllerMethods = { type SimpleControllerMethods (line 13) | type SimpleControllerMethods = { type ParametersControllerMethods (line 24) | type ParametersControllerMethods = { type DescriptionsControllerMethods (line 32) | type DescriptionsControllerMethods = { type DeprecatedControllerMethods (line 36) | type DeprecatedControllerMethods = { type RequestBodyControllerMethods (line 40) | type RequestBodyControllerMethods = { type FormDataControllerMethods (line 44) | type FormDataControllerMethods = { type DefaultsControllerMethods (line 48) | type DefaultsControllerMethods = { type DuplicateControllerMethods (line 54) | type DuplicateControllerMethods = { type NoContentControllerMethods (line 61) | type NoContentControllerMethods = { type ResponseControllerMethods (line 65) | type ResponseControllerMethods = { type MultipleTags1ControllerMethods (line 72) | type MultipleTags1ControllerMethods = { type CollectionFormatControllerMethods (line 77) | type CollectionFormatControllerMethods = { type TypesControllerMethods (line 81) | type TypesControllerMethods = { type UploadControllerMethods (line 85) | type UploadControllerMethods = { type FileResponseControllerMethods (line 89) | type FileResponseControllerMethods = { type ComplexControllerMethods (line 93) | type ComplexControllerMethods = { type MultipartControllerMethods (line 98) | type MultipartControllerMethods = { type HeaderControllerMethods (line 103) | type HeaderControllerMethods = { type ErrorControllerMethods (line 107) | type ErrorControllerMethods = { type NonAsciiÆøåÆøÅöôêÊControllerMethods (line 111) | type NonAsciiÆøåÆøÅöôêÊControllerMethods = { FILE: packages/openapi-ts-tests/nestjs/v11/__snapshots__/3.0.x/default/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type _400 (line 10) | type _400 = string; type ExternalRefA (line 12) | type ExternalRefA = ExternalSharedModel; type ExternalRefB (line 14) | type ExternalRefB = ExternalSharedModel; type CamelCaseCommentWithBreaks (line 22) | type CamelCaseCommentWithBreaks = number; type CommentWithBreaks (line 30) | type CommentWithBreaks = number; type CommentWithBackticks (line 35) | type CommentWithBackticks = number; type CommentWithBackticksAndQuotes (line 40) | type CommentWithBackticksAndQuotes = number; type CommentWithSlashes (line 45) | type CommentWithSlashes = number; type CommentWithExpressionPlaceholders (line 50) | type CommentWithExpressionPlaceholders = number; type CommentWithQuotes (line 55) | type CommentWithQuotes = number; type CommentWithReservedCharacters (line 60) | type CommentWithReservedCharacters = number; type SimpleInteger (line 65) | type SimpleInteger = number; type SimpleBoolean (line 70) | type SimpleBoolean = boolean; type SimpleString (line 75) | type SimpleString = string; type NonAsciiStringæøåÆøÅöôêÊ字符串 (line 80) | type NonAsciiStringæøåÆøÅöôêÊ字符串 = string; type SimpleFile (line 85) | type SimpleFile = Blob | File; type SimpleReference (line 90) | type SimpleReference = ModelWithString; type SimpleStringWithPattern (line 95) | type SimpleStringWithPattern = string | null; type EnumWithStrings (line 100) | type EnumWithStrings = 'Success' | 'Warning' | 'Error' | '\'Single Quote... type EnumWithReplacedCharacters (line 102) | type EnumWithReplacedCharacters = '\'Single Quote\'' | '"Double Quotes"'... type EnumWithNumbers (line 107) | type EnumWithNumbers = 1 | 2 | 3 | 1.1 | 1.2 | 1.3 | 100 | 200 | 300 | -... type EnumFromDescription (line 112) | type EnumFromDescription = number; type EnumWithExtensions (line 117) | type EnumWithExtensions = 200 | 400 | 500; type EnumWithXEnumNames (line 119) | type EnumWithXEnumNames = 0 | 1 | 2; type ArrayWithNumbers (line 124) | type ArrayWithNumbers = Array; type ArrayWithBooleans (line 129) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 134) | type ArrayWithStrings = Array; type ArrayWithReferences (line 139) | type ArrayWithReferences = Array; type ArrayWithArray (line 144) | type ArrayWithArray = Array>; type ArrayWithProperties (line 149) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 157) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 163) | type AnyOfAnyAndNull = { type AnyOfArrays (line 170) | type AnyOfArrays = { type DictionaryWithString (line 181) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 185) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 194) | type DictionaryWithReference = { type DictionaryWithArray (line 201) | type DictionaryWithArray = { type DictionaryWithDictionary (line 208) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 217) | type DictionaryWithProperties = { type ModelWithInteger (line 227) | type ModelWithInteger = { type ModelWithBoolean (line 237) | type ModelWithBoolean = { type ModelWithString (line 247) | type ModelWithString = { type ModelWithStringError (line 257) | type ModelWithStringError = { type ModelFromZendesk (line 267) | type ModelFromZendesk = string; type ModelWithNullableString (line 272) | type ModelWithNullableString = { type ModelWithEnum (line 298) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 316) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 326) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 336) | type ModelWithNestedEnums = { type ModelWithReference (line 354) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 361) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 370) | type ModelWithArray = { type ModelWithDictionary (line 379) | type ModelWithDictionary = { type DeprecatedModel (line 390) | type DeprecatedModel = { type ModelWithCircularReference (line 402) | type ModelWithCircularReference = { type CompositionWithOneOf (line 409) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 416) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 425) | type ModelCircle = { type ModelSquare (line 433) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 441) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 450) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 457) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 466) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 470) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 472) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 477) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 484) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 493) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 502) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 511) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 520) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 529) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 538) | type CompositionBaseModel = { type CompositionExtendedModel (line 546) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 555) | type ModelWithProperties = { type ModelWithNestedProperties (line 573) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 584) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 591) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 600) | type ModelWithDuplicateImports = { type ModelThatExtends (line 609) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 617) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 625) | type ModelWithPattern = { type File (line 638) | type File = { type Default (line 661) | type Default = { type Pageable (line 665) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 674) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 681) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 688) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 692) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 702) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 710) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 714) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 726) | type NullableObject = { type CharactersInDescription (line 733) | type CharactersInDescription = string; type ModelWithNullableObject (line 735) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 742) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 746) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 763) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 765) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 767) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 772) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 777) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 781) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 786) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 791) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 797) | type ModelWithPrefixItemsConstantSizeArray = Array; type ArrayWithBooleans (line 135) | type ArrayWithBooleans = Array; type ArrayWithStrings (line 140) | type ArrayWithStrings = Array; type ArrayWithReferences (line 145) | type ArrayWithReferences = Array; type ArrayWithArray (line 150) | type ArrayWithArray = Array>; type ArrayWithProperties (line 155) | type ArrayWithProperties = Array<{ type ArrayWithAnyOfProperties (line 163) | type ArrayWithAnyOfProperties = Array<{ type AnyOfAnyAndNull (line 169) | type AnyOfAnyAndNull = { type AnyOfArrays (line 176) | type AnyOfArrays = { type DictionaryWithString (line 187) | type DictionaryWithString = { type DictionaryWithPropertiesAndAdditionalProperties (line 191) | type DictionaryWithPropertiesAndAdditionalProperties = { type DictionaryWithReference (line 200) | type DictionaryWithReference = { type DictionaryWithArray (line 207) | type DictionaryWithArray = { type DictionaryWithDictionary (line 214) | type DictionaryWithDictionary = { type DictionaryWithProperties (line 223) | type DictionaryWithProperties = { type ModelWithInteger (line 233) | type ModelWithInteger = { type ModelWithBoolean (line 243) | type ModelWithBoolean = { type ModelWithString (line 253) | type ModelWithString = { type ModelWithStringError (line 263) | type ModelWithStringError = { type ModelFromZendesk (line 273) | type ModelFromZendesk = string; type ModelWithNullableString (line 278) | type ModelWithNullableString = { type ModelWithEnum (line 304) | type ModelWithEnum = { type ModelWithEnumWithHyphen (line 322) | type ModelWithEnumWithHyphen = { type ModelWithEnumFromDescription (line 332) | type ModelWithEnumFromDescription = { type ModelWithNestedEnums (line 342) | type ModelWithNestedEnums = { type ModelWithReference (line 360) | type ModelWithReference = { type ModelWithArrayReadOnlyAndWriteOnly (line 367) | type ModelWithArrayReadOnlyAndWriteOnly = { type ModelWithArray (line 376) | type ModelWithArray = { type ModelWithDictionary (line 385) | type ModelWithDictionary = { type DeprecatedModel (line 396) | type DeprecatedModel = { type ModelWithCircularReference (line 408) | type ModelWithCircularReference = { type CompositionWithOneOf (line 415) | type CompositionWithOneOf = { type CompositionWithOneOfAnonymous (line 422) | type CompositionWithOneOfAnonymous = { type ModelCircle (line 431) | type ModelCircle = { type ModelSquare (line 439) | type ModelSquare = { type CompositionWithOneOfDiscriminator (line 447) | type CompositionWithOneOfDiscriminator = ({ type CompositionWithAnyOf (line 456) | type CompositionWithAnyOf = { type CompositionWithAnyOfAnonymous (line 463) | type CompositionWithAnyOfAnonymous = { type CompositionWithNestedAnyAndTypeNull (line 472) | type CompositionWithNestedAnyAndTypeNull = { type _3eNum1Период (line 476) | type _3eNum1Период = 'Bird' | 'Dog'; type ConstValue (line 478) | type ConstValue = 'ConstValue'; type CompositionWithNestedAnyOfAndNull (line 483) | type CompositionWithNestedAnyOfAndNull = { type CompositionWithOneOfAndNullable (line 493) | type CompositionWithOneOfAndNullable = { type CompositionWithOneOfAndSimpleDictionary (line 502) | type CompositionWithOneOfAndSimpleDictionary = { type CompositionWithOneOfAndSimpleArrayDictionary (line 511) | type CompositionWithOneOfAndSimpleArrayDictionary = { type CompositionWithOneOfAndComplexArrayDictionary (line 520) | type CompositionWithOneOfAndComplexArrayDictionary = { type CompositionWithAllOfAndNullable (line 529) | type CompositionWithAllOfAndNullable = { type CompositionWithAnyOfAndNullable (line 538) | type CompositionWithAnyOfAndNullable = { type CompositionBaseModel (line 547) | type CompositionBaseModel = { type CompositionExtendedModel (line 555) | type CompositionExtendedModel = CompositionBaseModel & { type ModelWithProperties (line 564) | type ModelWithProperties = { type ModelWithNestedProperties (line 582) | type ModelWithNestedProperties = { type ModelWithDuplicateProperties (line 593) | type ModelWithDuplicateProperties = { type ModelWithOrderedProperties (line 600) | type ModelWithOrderedProperties = { type ModelWithDuplicateImports (line 609) | type ModelWithDuplicateImports = { type ModelThatExtends (line 618) | type ModelThatExtends = ModelWithString & { type ModelThatExtendsExtends (line 626) | type ModelThatExtendsExtends = ModelWithString & ModelThatExtends & { type ModelWithPattern (line 634) | type ModelWithPattern = { type File (line 647) | type File = { type Default (line 670) | type Default = { type Pageable (line 674) | type Pageable = { type FreeFormObjectWithoutAdditionalProperties (line 683) | type FreeFormObjectWithoutAdditionalProperties = { type FreeFormObjectWithAdditionalPropertiesEqTrue (line 690) | type FreeFormObjectWithAdditionalPropertiesEqTrue = { type FreeFormObjectWithAdditionalPropertiesEqEmptyObject (line 697) | type FreeFormObjectWithAdditionalPropertiesEqEmptyObject = { type ModelWithConst (line 701) | type ModelWithConst = { type ModelWithAdditionalPropertiesEqTrue (line 711) | type ModelWithAdditionalPropertiesEqTrue = { type NestedAnyOfArraysNullable (line 719) | type NestedAnyOfArraysNullable = { type CompositionWithOneOfAndProperties (line 723) | type CompositionWithOneOfAndProperties = ({ type NullableObject (line 735) | type NullableObject = { type CharactersInDescription (line 742) | type CharactersInDescription = string; type ModelWithNullableObject (line 744) | type ModelWithNullableObject = { type ModelWithAdditionalPropertiesRef (line 751) | type ModelWithAdditionalPropertiesRef = { type ModelWithOneOfEnum (line 755) | type ModelWithOneOfEnum = { type ModelWithNestedArrayEnumsDataFoo (line 772) | type ModelWithNestedArrayEnumsDataFoo = 'foo' | 'bar'; type ModelWithNestedArrayEnumsDataBar (line 774) | type ModelWithNestedArrayEnumsDataBar = 'baz' | 'qux'; type ModelWithNestedArrayEnumsData (line 776) | type ModelWithNestedArrayEnumsData = { type ModelWithNestedArrayEnums (line 781) | type ModelWithNestedArrayEnums = { type ModelWithNestedCompositionEnums (line 786) | type ModelWithNestedCompositionEnums = { type ModelWithReadOnlyAndWriteOnly (line 790) | type ModelWithReadOnlyAndWriteOnly = { type ModelWithConstantSizeArray (line 795) | type ModelWithConstantSizeArray = [ type ModelWithAnyOfConstantSizeArray (line 800) | type ModelWithAnyOfConstantSizeArray = [ type ModelWithPrefixItemsConstantSizeArray (line 806) | type ModelWithPrefixItemsConstantSizeArray = [ type ModelWithAnyOfConstantSizeArrayNullable (line 812) | type ModelWithAnyOfConstantSizeArrayNullable = [ type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions (line 818) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptions = [ type ModelWithAnyOfConstantSizeArrayAndIntersect (line 823) | type ModelWithAnyOfConstantSizeArrayAndIntersect = [ type ModelWithNumericEnumUnion (line 828) | type ModelWithNumericEnumUnion = { type ModelWithBackticksInDescription (line 838) | type ModelWithBackticksInDescription = { type ModelWithOneOfAndProperties (line 871) | type ModelWithOneOfAndProperties = (SimpleParameter | NonAsciiStringæøåÆ... type ParameterSimpleParameterUnused (line 879) | type ParameterSimpleParameterUnused = string; type PostServiceWithEmptyTagResponse (line 884) | type PostServiceWithEmptyTagResponse = string; type PostServiceWithEmptyTagResponse2 (line 889) | type PostServiceWithEmptyTagResponse2 = string; type DeleteFooData (line 894) | type DeleteFooData = string; type DeleteFooData2 (line 899) | type DeleteFooData2 = string; type Import (line 904) | type Import = string; type SchemaWithFormRestrictedKeys (line 906) | type SchemaWithFormRestrictedKeys = { type IoK8sApimachineryPkgApisMetaV1DeleteOptions (line 931) | type IoK8sApimachineryPkgApisMetaV1DeleteOptions = { type IoK8sApimachineryPkgApisMetaV1Preconditions (line 941) | type IoK8sApimachineryPkgApisMetaV1Preconditions = { type AdditionalPropertiesUnknownIssue (line 952) | type AdditionalPropertiesUnknownIssue = { type AdditionalPropertiesUnknownIssue2 (line 956) | type AdditionalPropertiesUnknownIssue2 = { type AdditionalPropertiesUnknownIssue3 (line 960) | type AdditionalPropertiesUnknownIssue3 = string & { type AdditionalPropertiesIntegerIssue (line 966) | type AdditionalPropertiesIntegerIssue = { type OneOfAllOfIssue (line 971) | type OneOfAllOfIssue = ((ConstValue | GenericSchemaDuplicateIssue1System... type GenericSchemaDuplicateIssue1SystemBoolean (line 973) | type GenericSchemaDuplicateIssue1SystemBoolean = { type GenericSchemaDuplicateIssue1SystemString (line 982) | type GenericSchemaDuplicateIssue1SystemString = { type ExternalSharedModel (line 988) | type ExternalSharedModel = { type ModelWithReferenceWritable (line 996) | type ModelWithReferenceWritable = { type ModelWithArrayReadOnlyAndWriteOnlyWritable (line 1003) | type ModelWithArrayReadOnlyAndWriteOnlyWritable = { type ModelWithPropertiesWritable (line 1012) | type ModelWithPropertiesWritable = { type ModelWithPatternWritable (line 1027) | type ModelWithPatternWritable = { type FileWritable (line 1038) | type FileWritable = { type ModelWithReadOnlyAndWriteOnlyWritable (line 1045) | type ModelWithReadOnlyAndWriteOnlyWritable = { type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable (line 1050) | type ModelWithAnyOfConstantSizeArrayWithNSizeAndOptionsWritable = [ type AdditionalPropertiesUnknownIssueWritable (line 1055) | type AdditionalPropertiesUnknownIssueWritable = { type OneOfAllOfIssueWritable (line 1059) | type OneOfAllOfIssueWritable = ((ConstValue | GenericSchemaDuplicateIssu... type GenericSchemaDuplicateIssue1SystemBooleanWritable (line 1061) | type GenericSchemaDuplicateIssue1SystemBooleanWritable = { type GenericSchemaDuplicateIssue1SystemStringWritable (line 1069) | type GenericSchemaDuplicateIssue1SystemStringWritable = { type SimpleParameter (line 1077) | type SimpleParameter = string; type XFooBar (line 1082) | type XFooBar = ModelWithString; type SimpleRequestBody (line 1087) | type SimpleRequestBody = ModelWithString; type SimpleFormData (line 1092) | type SimpleFormData = ModelWithString; type ExportData (line 1094) | type ExportData = { type PatchApiVbyApiVersionNoTagData (line 1101) | type PatchApiVbyApiVersionNoTagData = { type PatchApiVbyApiVersionNoTagResponses (line 1108) | type PatchApiVbyApiVersionNoTagResponses = { type ImportData (line 1115) | type ImportData = { type ImportResponses (line 1122) | type ImportResponses = { type ImportResponse (line 1133) | type ImportResponse = ImportResponses[keyof ImportResponses]; type FooWowData (line 1135) | type FooWowData = { type FooWowResponses (line 1142) | type FooWowResponses = { type ApiVVersionODataControllerCountData (line 1149) | type ApiVVersionODataControllerCountData = { type ApiVVersionODataControllerCountResponses (line 1156) | type ApiVVersionODataControllerCountResponses = { type ApiVVersionODataControllerCountResponse (line 1163) | type ApiVVersionODataControllerCountResponse = ApiVVersionODataControlle... type GetApiVbyApiVersionSimpleOperationData (line 1165) | type GetApiVbyApiVersionSimpleOperationData = { type GetApiVbyApiVersionSimpleOperationErrors (line 1177) | type GetApiVbyApiVersionSimpleOperationErrors = { type GetApiVbyApiVersionSimpleOperationError (line 1184) | type GetApiVbyApiVersionSimpleOperationError = GetApiVbyApiVersionSimple... type GetApiVbyApiVersionSimpleOperationResponses (line 1186) | type GetApiVbyApiVersionSimpleOperationResponses = { type GetApiVbyApiVersionSimpleOperationResponse (line 1193) | type GetApiVbyApiVersionSimpleOperationResponse = GetApiVbyApiVersionSim... type DeleteCallWithoutParametersAndResponseData (line 1195) | type DeleteCallWithoutParametersAndResponseData = { type GetCallWithoutParametersAndResponseData (line 1202) | type GetCallWithoutParametersAndResponseData = { type HeadCallWithoutParametersAndResponseData (line 1209) | type HeadCallWithoutParametersAndResponseData = { type OptionsCallWithoutParametersAndResponseData (line 1216) | type OptionsCallWithoutParametersAndResponseData = { type PatchCallWithoutParametersAndResponseData (line 1223) | type PatchCallWithoutParametersAndResponseData = { type PostCallWithoutParametersAndResponseData (line 1230) | type PostCallWithoutParametersAndResponseData = { type PutCallWithoutParametersAndResponseData (line 1237) | type PutCallWithoutParametersAndResponseData = { type DeleteFooData3 (line 1244) | type DeleteFooData3 = { type CallWithDescriptionsData (line 1266) | type CallWithDescriptionsData = { type DeprecatedCallData (line 1301) | type DeprecatedCallData = { type CallWithParametersData (line 1316) | type CallWithParametersData = { type CallWithWeirdParameterNamesData (line 1350) | type CallWithWeirdParameterNamesData = { type GetCallWithOptionalParamData (line 1392) | type GetCallWithOptionalParamData = { type PostCallWithOptionalParamData (line 1407) | type PostCallWithOptionalParamData = { type PostCallWithOptionalParamResponses (line 1424) | type PostCallWithOptionalParamResponses = { type PostCallWithOptionalParamResponse (line 1435) | type PostCallWithOptionalParamResponse = PostCallWithOptionalParamRespon... type PostApiVbyApiVersionRequestBodyData (line 1437) | type PostApiVbyApiVersionRequestBodyData = { type PostApiVbyApiVersionFormDataData (line 1452) | type PostApiVbyApiVersionFormDataData = { type CallWithDefaultParametersData (line 1467) | type CallWithDefaultParametersData = { type CallWithDefaultOptionalParametersData (line 1495) | type CallWithDefaultOptionalParametersData = { type CallToTestOrderOfParamsData (line 1523) | type CallToTestOrderOfParamsData = { type DuplicateNameData (line 1563) | type DuplicateNameData = { type DuplicateName2Data (line 1570) | type DuplicateName2Data = { type DuplicateName3Data (line 1577) | type DuplicateName3Data = { type DuplicateName4Data (line 1584) | type DuplicateName4Data = { type CallWithNoContentResponseData (line 1591) | type CallWithNoContentResponseData = { type CallWithNoContentResponseResponses (line 1598) | type CallWithNoContentResponseResponses = { type CallWithNoContentResponseResponse (line 1605) | type CallWithNoContentResponseResponse = CallWithNoContentResponseRespon... type CallWithResponseAndNoContentResponseData (line 1607) | type CallWithResponseAndNoContentResponseData = { type CallWithResponseAndNoContentResponseResponses (line 1614) | type CallWithResponseAndNoContentResponseResponses = { type CallWithResponseAndNoContentResponseResponse (line 1625) | type CallWithResponseAndNoContentResponseResponse = CallWithResponseAndN... type DummyAData (line 1627) | type DummyAData = { type DummyAResponses (line 1634) | type DummyAResponses = { type DummyAResponse (line 1638) | type DummyAResponse = DummyAResponses[keyof DummyAResponses]; type DummyBData (line 1640) | type DummyBData = { type DummyBResponses (line 1647) | type DummyBResponses = { type DummyBResponse (line 1654) | type DummyBResponse = DummyBResponses[keyof DummyBResponses]; type CallWithResponseData (line 1656) | type CallWithResponseData = { type CallWithResponseResponses (line 1663) | type CallWithResponseResponses = { type CallWithResponseResponse (line 1667) | type CallWithResponseResponse = CallWithResponseResponses[keyof CallWith... type CallWithDuplicateResponsesData (line 1669) | type CallWithDuplicateResponsesData = { type CallWithDuplicateResponsesErrors (line 1676) | type CallWithDuplicateResponsesErrors = { type CallWithDuplicateResponsesError (line 1699) | type CallWithDuplicateResponsesError = CallWithDuplicateResponsesErrors[... type CallWithDuplicateResponsesResponses (line 1701) | type CallWithDuplicateResponsesResponses = { type CallWithDuplicateResponsesResponse (line 1716) | type CallWithDuplicateResponsesResponse = CallWithDuplicateResponsesResp... type CallWithResponsesData (line 1718) | type CallWithResponsesData = { type CallWithResponsesErrors (line 1725) | type CallWithResponsesErrors = { type CallWithResponsesError (line 1744) | type CallWithResponsesError = CallWithResponsesErrors[keyof CallWithResp... type CallWithResponsesResponses (line 1746) | type CallWithResponsesResponses = { type CallWithResponsesResponse (line 1765) | type CallWithResponsesResponse = CallWithResponsesResponses[keyof CallWi... type CollectionFormatData (line 1767) | type CollectionFormatData = { type TypesData (line 1795) | type TypesData = { type TypesResponses (line 1840) | type TypesResponses = { type TypesResponse (line 1861) | type TypesResponse = TypesResponses[keyof TypesResponses]; type UploadFileData (line 1863) | type UploadFileData = { type UploadFileResponses (line 1875) | type UploadFileResponses = { type UploadFileResponse (line 1879) | type UploadFileResponse = UploadFileResponses[keyof UploadFileResponses]; type FileResponseData (line 1881) | type FileResponseData = { type FileResponseResponses (line 1894) | type FileResponseResponses = { type FileResponseResponse (line 1901) | type FileResponseResponse = FileResponseResponses[keyof FileResponseResp... type ComplexTypesData (line 1903) | type ComplexTypesData = { type ComplexTypesErrors (line 1925) | type ComplexTypesErrors = { type ComplexTypesResponses (line 1936) | type ComplexTypesResponses = { type ComplexTypesResponse (line 1943) | type ComplexTypesResponse = ComplexTypesResponses[keyof ComplexTypesResp... type MultipartResponseData (line 1945) | type MultipartResponseData = { type MultipartResponseResponses (line 1952) | type MultipartResponseResponses = { type MultipartResponseResponse (line 1965) | type MultipartResponseResponse = MultipartResponseResponses[keyof Multip... type MultipartRequestData (line 1967) | type MultipartRequestData = { type ComplexParamsData (line 1977) | type ComplexParamsData = { type ComplexParamsResponses (line 2002) | type ComplexParamsResponses = { type ComplexParamsResponse (line 2009) | type ComplexParamsResponse = ComplexParamsResponses[keyof ComplexParamsR... type CallWithResultFromHeaderData (line 2011) | type CallWithResultFromHeaderData = { type CallWithResultFromHeaderErrors (line 2018) | type CallWithResultFromHeaderErrors = { type CallWithResultFromHeaderResponses (line 2029) | type CallWithResultFromHeaderResponses = { type TestErrorCodeData (line 2036) | type TestErrorCodeData = { type TestErrorCodeErrors (line 2048) | type TestErrorCodeErrors = { type TestErrorCodeResponses (line 2067) | type TestErrorCodeResponses = { type NonAsciiæøåÆøÅöôêÊ字符串Data (line 2074) | type NonAsciiæøåÆøÅöôêÊ字符串Data = { type NonAsciiæøåÆøÅöôêÊ字符串Responses (line 2086) | type NonAsciiæøåÆøÅöôêÊ字符串Responses = { type NonAsciiæøåÆøÅöôêÊ字符串Response (line 2093) | type NonAsciiæøåÆøÅöôêÊ字符串Response = NonAsciiæøåÆøÅöôêÊ字符串Responses[keyo... type PutWithFormUrlEncodedData (line 2095) | type PutWithFormUrlEncodedData = { FILE: packages/openapi-ts-tests/orpc/v1/test/globalTeardown.ts function teardown (line 5) | function teardown() { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/class/sdk.gen.ts type Options (line 7) | type Options(options?: Op... class Odata (line 27) | class Odata { method accountingCompanies (line 28) | public static accountingCompanies(options?: Op... class Odata2 (line 79) | class Odata2 { method accountingCompanyMemberships (line 80) | public static accountingCompanyMemberships(options?: Op... class Odata3 (line 120) | class Odata3 { method bankAccounts (line 121) | public static bankAccounts(optio... class VVersionApiVersion3 (line 128) | class VVersionApiVersion3 { class Api3 (line 132) | class Api3 { class BankAccounts2 (line 136) | class BankAccounts2 { method putApiV1BankAccounts (line 137) | public static putApiV1BankAccounts(options?: Op... class Odata4 (line 161) | class Odata4 { method businessAccountantAssignments (line 162) | public static businessAccountantAssignments(options?: Op... class BusinessDocuments (line 202) | class BusinessDocuments { method count (line 203) | public static count(options?: Op... class Odata5 (line 208) | class Odata5 { method businessDocumentActivities (line 209) | public static businessDocumentActivities(... class VVersionApiVersion5 (line 222) | class VVersionApiVersion5 { class Api5 (line 226) | class Api5 { class BusinessDocuments2 (line 230) | class BusinessDocuments2 { method getApiV1BusinessDocumentsByIdRaw (line 231) | public static getApiV1BusinessDocumentsByIdRaw(options?: Op... class Odata6 (line 297) | class Odata6 { method businessDocumentsSummaries (line 301) | public static businessDocumentsSummaries(options?: Op... method key (line 325) | public static key(options?: Opti... class Odata7 (line 330) | class Odata7 { method businesses (line 331) | public static businesses(options... method businessesKey (line 335) | public static businessesKey(opti... class VVersionApiVersion7 (line 342) | class VVersionApiVersion7 { class Api7 (line 346) | class Api7 { class Businesses2 (line 350) | class Businesses2 { method getApiV1BusinessesByIdDocumentTypesSummary (line 351) | public static getApiV1BusinessesByIdDocumentTypesSummary(options?: Op... class Odata8 (line 418) | class Odata8 { method businessSummaries (line 419) | public static businessSummaries(... class VVersionApiVersion8 (line 426) | class VVersionApiVersion8 { class Api8 (line 430) | class Api8 { class BusinessSummaries2 (line 434) | class BusinessSummaries2 { class Counterparties (line 438) | class Counterparties { method count (line 439) | public static count(options?: Op... class Odata9 (line 444) | class Odata9 { method counterparties (line 445) | public static counterparties(opt... class VVersionApiVersion9 (line 452) | class VVersionApiVersion9 { class Api9 (line 456) | class Api9 { class Counterparties2 (line 460) | class Counterparties2 { method postApiV1Counterparties (line 461) | public static postApiV1Counterparties(options?: Op... class Odata10 (line 496) | class Odata10 { method dataBoxCredentials (line 497) | public static dataBoxCredentials... class VVersionApiVersion10 (line 504) | class VVersionApiVersion10 { class Api10 (line 508) | class Api10 { class DataBoxCredentials2 (line 512) | class DataBoxCredentials2 { method putApiV1DataBoxCredentials (line 513) | public static putApiV1DataBoxCredentials(options?... method getApiDevReseedDb (line 536) | public static getApiDevReseedDb(... method getApiDevDbReset (line 540) | public static getApiDevDbReset(o... method getApiDevDbReset2 (line 544) | public static getApiDevDbReset2(... method getApiDevDbCreate (line 548) | public static getApiDevDbCreate(... method getApiDevDbTouch (line 552) | public static getApiDevDbTouch(o... method getApiDevSeed (line 556) | public static getApiDevSeed(opti... method getApiDevSeedAll (line 560) | public static getApiDevSeedAll(o... method getApiDevSeedProd (line 564) | public static getApiDevSeedProd(... method getApiDevJobProcessRecurringTasks (line 568) | public static getApiDevJobProcessRecurringTasks(options?: Op... class Odata11 (line 615) | class Odata11 { method documentTypes (line 616) | public static documentTypes(opti... class VVersionApiVersion11 (line 623) | class VVersionApiVersion11 { class Api11 (line 627) | class Api11 { class DocumentTypes2 (line 631) | class DocumentTypes2 { class Feedback (line 635) | class Feedback { method postApiV1Feedback (line 636) | public static postApiV1Feedback(... class Invitations (line 648) | class Invitations { method count (line 649) | public static count(options?: Op... class Odata12 (line 654) | class Odata12 { method invitations (line 655) | public static invitations(option... class VVersionApiVersion12 (line 662) | class VVersionApiVersion12 { class Api12 (line 666) | class Api12 { class Invitations2 (line 670) | class Invitations2 { method postApiV1Invitations (line 671) | public static postApiV1Invitations(options?: Op... class Odata13 (line 721) | class Odata13 { method invoices (line 722) | public static invoices(options?:... class VVersionApiVersion13 (line 729) | class VVersionApiVersion13 { class Api13 (line 733) | class Api13 { class Invoices2 (line 737) | class Invoices2 { method postApiV1Invoices (line 738) | public static postApiV1Invoices(... method deleteApiV1InvoicesById (line 749) | public static deleteApiV1InvoicesById(options?: Op... class Odata14 (line 792) | class Odata14 { method invoiceSettings (line 793) | public static invoiceSettings(op... class VVersionApiVersion14 (line 800) | class VVersionApiVersion14 { class Api14 (line 804) | class Api14 { class InvoiceSettings2 (line 808) | class InvoiceSettings2 { method putApiV1InvoiceSettings (line 809) | public static putApiV1InvoiceSettings(options?: Op... class Odata15 (line 829) | class Odata15 { method licenses (line 830) | public static licenses(options?:... class VVersionApiVersion15 (line 837) | class VVersionApiVersion15 { class Api15 (line 841) | class Api15 { class Licenses2 (line 845) | class Licenses2 { class Notifications (line 849) | class Notifications { method postApiV1NotificationsTest (line 850) | public static postApiV1NotificationsTest(options?: Op... class Odata16 (line 868) | class Odata16 { method personalDocuments (line 869) | public static personalDocuments(... class VVersionApiVersion16 (line 876) | class VVersionApiVersion16 { class Api16 (line 880) | class Api16 { class PersonalDocuments2 (line 884) | class PersonalDocuments2 { method getApiV1PersonalDocumentsByIdRaw (line 885) | public static getApiV1PersonalDocumentsByIdRaw(options?: Op... class Odata17 (line 929) | class Odata17 { method recurringTasks (line 930) | public static recurringTasks(opt... class VVersionApiVersion17 (line 937) | class VVersionApiVersion17 { class Api17 (line 941) | class Api17 { class RecurringTasks2 (line 945) | class RecurringTasks2 { method postApiV1RecurringTasks (line 946) | public static postApiV1RecurringTasks(options?: Opti... class Tasks (line 981) | class Tasks { method count (line 982) | public static count(options?: Op... method key (line 986) | public static key(options?: Opti... class Odata18 (line 991) | class Odata18 { method tasks (line 992) | public static tasks(options?: Op... method tasksKey (line 996) | public static tasksKey(options?:... class VVersionApiVersion18 (line 1003) | class VVersionApiVersion18 { class Api18 (line 1007) | class Api18 { class Tasks2 (line 1011) | class Tasks2 { method postApiV1Tasks (line 1012) | public static postApiV1Tasks(opt... method putApiV1TasksById (line 1023) | public static putApiV1TasksById(... method postApiV1TasksByIdSubmit (line 1034) | public static postApiV1TasksByIdSubmit(optio... class VVersionApiVersion19 (line 1077) | class VVersionApiVersion19 { class Api19 (line 1081) | class Api19 { class MapIdentityApi (line 1085) | class MapIdentityApi { class User2 (line 1089) | class User2 { method postApiV1UserRegister (line 1090) | public static postApiV1UserRegister... method postApiV1UserRefresh (line 1112) | public static postApiV1UserRefresh(op... class Users (line 1207) | class Users { method getApiV1UsersMe (line 1208) | public static getApiV1UsersMe(op... method patchApiV1UsersById (line 1212) | public static patchApiV1UsersById = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/flat/sdk.gen.ts type Options (line 7) | type Options = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/sdk.gen.ts type Options (line 7) | type Options { method get (line 36) | get(key?: string): T { method set (line 44) | set(value: T, key?: string): void { class AccountingCompanies (line 49) | class AccountingCompanies extends HeyApiClient { method count (line 50) | public count(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(options?: Options(optio... method accountingCompanyMemberships (line 179) | public accountingCompanyMemberships(options?: Op... method businessAccountantAssignments (line 187) | public businessAccountantAssignments(options... method businessDocumentsSummaries (line 202) | public businessDocumentsSummaries(options?: Opti... method businessesKey (line 210) | public businessesKey(options?: O... method businessSummaries (line 214) | public businessSummaries(options... method counterparties (line 218) | public counterparties(options?: ... method dataBoxCredentials (line 222) | public dataBoxCredentials(option... method documentTypes (line 226) | public documentTypes(options?: O... method invitations (line 230) | public invitations(options?: Opt... method invoices (line 234) | public invoices(options?: Option... method invoiceSettings (line 238) | public invoiceSettings(options?:... method licenses (line 242) | public licenses(options?: Option... method personalDocuments (line 246) | public personalDocuments(options... method recurringTasks (line 250) | public recurringTasks(options?: ... method tasks (line 254) | public tasks(options?: Options(options?: Option... method accountingCompanies2 (line 263) | get accountingCompanies2(): AccountingCompanies { method accountingCompanyMemberships2 (line 268) | get accountingCompanyMemberships2(): AccountingCompanyMemberships { method bankAccounts2 (line 273) | get bankAccounts2(): BankAccounts { method businessAccountantAssignments2 (line 278) | get businessAccountantAssignments2(): BusinessAccountantAssignments { method businessDocumentActivities2 (line 283) | get businessDocumentActivities2(): BusinessDocumentActivities { method businessDocuments2 (line 288) | get businessDocuments2(): BusinessDocuments { method businessDocumentsSummaries2 (line 293) | get businessDocumentsSummaries2(): BusinessDocumentsSummaries { method businesses2 (line 298) | get businesses2(): Businesses { method businessSummaries2 (line 303) | get businessSummaries2(): BusinessSummaries { method counterparties2 (line 308) | get counterparties2(): Counterparties { method dataBoxCredentials2 (line 313) | get dataBoxCredentials2(): DataBoxCredentials { method documentTypes2 (line 318) | get documentTypes2(): DocumentTypes { method invitations2 (line 323) | get invitations2(): Invitations { method invoices2 (line 328) | get invoices2(): Invoices { method invoiceSettings2 (line 333) | get invoiceSettings2(): InvoiceSettings { method licenses2 (line 338) | get licenses2(): Licenses { method personalDocuments2 (line 343) | get personalDocuments2(): PersonalDocuments { method recurringTasks2 (line 348) | get recurringTasks2(): RecurringTasks { method tasks2 (line 353) | get tasks2(): Tasks { class VVersionApiVersion (line 358) | class VVersionApiVersion extends HeyApiClient { method odata (line 360) | get odata(): Odata { class Api (line 365) | class Api extends HeyApiClient { method vVersionApiVersion (line 367) | get vVersionApiVersion(): VVersionApiVersion { class User (line 372) | class User extends HeyApiClient { method confirmEmail (line 373) | public confirmEmail(options: Opt... class VVersionApiVersion2 (line 378) | class VVersionApiVersion2 extends HeyApiClient { method user (line 380) | get user(): User { class Api2 (line 385) | class Api2 extends HeyApiClient { method vVersionApiVersion (line 387) | get vVersionApiVersion(): VVersionApiVersion2 { class MapIdentityApi (line 392) | class MapIdentityApi extends HeyApiClient { method api (line 394) | get api(): Api2 { class Sdk (line 399) | class Sdk extends HeyApiClient { method constructor (line 402) | constructor(args?: { method postApiV1AccountingCompanies (line 410) | public postApiV1AccountingCompanies(opti... method deleteApiV1BankAccountsById (line 462) | public deleteApiV1BankAccountsById(optio... method deleteApiV1BusinessesById (line 550) | public deleteApiV1BusinessesById... method putApiV1BusinessesById (line 554) | public putApiV1BusinessesById(op... method putApiV1BusinessesByIdContact (line 565) | public putApiV1BusinessesByIdContact(o... method deleteApiV1CounterpartiesById (line 602) | public deleteApiV1CounterpartiesById(options?: Optio... method getApiDevReseedDb (line 636) | public getApiDevReseedDb(options... method getApiDevDbReset (line 640) | public getApiDevDbReset(options?... method getApiDevDbReset2 (line 644) | public getApiDevDbReset2(options... method getApiDevDbCreate (line 648) | public getApiDevDbCreate(options... method getApiDevDbTouch (line 652) | public getApiDevDbTouch(options?... method getApiDevSeed (line 656) | public getApiDevSeed(options?: O... method getApiDevSeedAll (line 660) | public getApiDevSeedAll(options?... method getApiDevSeedProd (line 664) | public getApiDevSeedProd(options... method getApiDevJobProcessRecurringTasks (line 668) | public getApiDevJobProcessRecurringTasks(opt... method getApiDevEmailSendTest (line 680) | public getApiDevEmailSendTest(op... method deleteApiV1NotificationsDeviceTokens (line 684) | public deleteApiV1NotificationsDeviceTokens(options... method postApiV1Invitations (line 717) | public postApiV1Invitations(opti... method postApiV1InvitationsByIdAccept (line 728) | public postApiV1InvitationsByIdAccept... method postApiV1Invoices (line 758) | public postApiV1Invoices(options... method deleteApiV1InvoicesById (line 769) | public deleteApiV1InvoicesById(o... method patchApiV1InvoicesById (line 773) | public patchApiV1InvoicesById(op... method getApiV1InvoicesByIdPreview (line 784) | public getApiV1InvoicesByIdPreview... method postApiV1InvoicesByIdSnapshot (line 799) | public postApiV1InvoicesByIdSnapshot(o... method postApiV1NotificationsTest (line 814) | public postApiV1NotificationsTest(o... method deleteApiV1RecurringTasksById (line 871) | public deleteApiV1RecurringTasksById(options?: Options(options?: ... method putApiV1TasksById (line 901) | public putApiV1TasksById(options... method postApiV1TasksByIdSubmit (line 912) | public postApiV1TasksByIdSubmit(... method postApiV1TasksByIdApprove (line 923) | public postApiV1TasksByIdApprove... method postApiV1TasksByIdReject (line 927) | public postApiV1TasksByIdReject(... method getApiV1TasksByIdComments (line 938) | public getApiV1TasksByIdComments... method getApiV1TasksByIdDocuments (line 942) | public getApiV1TasksByIdDocuments(opt... method postApiV1UserLogin (line 957) | public postApiV1UserLogin(option... method postApiV1UserRefresh (line 968) | public postApiV1UserRefresh(opti... method postApiV1UserResendConfirmationEmail (line 979) | public postApiV1UserResendConfirmationEmail(op... method getApiV1UserManageInfo (line 1023) | public getApiV1UserManageInfo(op... method postApiV1UserManageInfo (line 1027) | public postApiV1UserManageInfo(o... method postApiV1UserLogout (line 1038) | public postApiV1UserLogout(optio... method getApiV1UserDocumentsSummary (line 1052) | public getApiV1UserDocumentsSummary(options?:... method getApiV1UsersMe (line 1060) | public getApiV1UsersMe(options?:... method patchApiV1UsersById (line 1064) | public patchApiV1UsersById(optio... method api (line 1076) | get api(): Api { method mapIdentityApi (line 1081) | get mapIdentityApi(): MapIdentityApi { FILE: packages/openapi-ts-tests/sdks/__snapshots__/method-class-conflict/instance/types.gen.ts type ClientOptions (line 3) | type ClientOptions = { type AccessTokenResponse (line 7) | type AccessTokenResponse = { type AccountingCompany (line 14) | type AccountingCompany = { type AccountingCompanyCreateDto (line 25) | type AccountingCompanyCreateDto = { type AccountingCompanyMembership (line 30) | type AccountingCompanyMembership = { type AccountingCompanyMembershipUpsertDto (line 39) | type AccountingCompanyMembershipUpsertDto = { type AccountingCompanyUpdateDto (line 45) | type AccountingCompanyUpdateDto = { type AddressDto (line 50) | type AddressDto = { type AnnualInvoicesCount (line 57) | type AnnualInvoicesCount = 'Tens' | 'Hundred' | 'Thousands' | 'TenThousa... type BankAccount (line 59) | type BankAccount = { type BankAccountUpsertDto (line 71) | type BankAccountUpsertDto = { type Business (line 80) | type Business = { type BusinessAccountantAssignment (line 96) | type BusinessAccountantAssignment = { type BusinessAccountantAssignmentUpsert (line 104) | type BusinessAccountantAssignmentUpsert = { type BusinessAccountingCompany (line 109) | type BusinessAccountingCompany = { type BusinessAresAddress (line 114) | type BusinessAresAddress = { type BusinessChangeContactDto (line 122) | type BusinessChangeContactDto = { type BusinessContactPerson (line 126) | type BusinessContactPerson = { type BusinessCreateDto (line 133) | type BusinessCreateDto = { type BusinessDocumentMoveToBusinessDocumentsDto (line 140) | type BusinessDocumentMoveToBusinessDocumentsDto = { type BusinessDocumentUpdateDto (line 145) | type BusinessDocumentUpdateDto = { type BusinessDocumentsSummary (line 150) | type BusinessDocumentsSummary = { type BusinessMembershipDto (line 159) | type BusinessMembershipDto = { type BusinessMembershipUpsertDto (line 169) | type BusinessMembershipUpsertDto = { type BusinessSummary (line 175) | type BusinessSummary = { type BusinessUpdateDto (line 189) | type BusinessUpdateDto = { type Counterparty (line 196) | type Counterparty = { type CounterpartyCreateDto (line 210) | type CounterpartyCreateDto = { type CounterpartyUpdateDto (line 221) | type CounterpartyUpdateDto = { type Country (line 231) | type Country = 'Czechia' | 'Slovakia'; type CreateInvoiceClientDto (line 233) | type CreateInvoiceClientDto = { type Currency (line 237) | type Currency = 'CZK' | 'EUR' | 'USD' | 'GBP'; type DataBoxCredentials (line 239) | type DataBoxCredentials = { type DataBoxCredentialsUpsertDto (line 248) | type DataBoxCredentialsUpsertDto = { type DocumentAction (line 254) | type DocumentAction = 'Uploaded'; type DocumentBusiness (line 256) | type DocumentBusiness = { type DocumentBusinessActivity (line 279) | type DocumentBusinessActivity = { type DocumentPersonal (line 290) | type DocumentPersonal = { type DocumentPersonalMoveToBusinessDocumentsDto (line 301) | type DocumentPersonalMoveToBusinessDocumentsDto = { type DocumentType (line 306) | type DocumentType = { type DocumentTypesSummary (line 311) | type DocumentTypesSummary = { type FeedbackType (line 317) | type FeedbackType = 'Feedback' | 'Bug'; type ForgotPasswordRequest (line 319) | type ForgotPasswordRequest = { type HttpValidationProblemDetails (line 323) | type HttpValidationProblemDetails = { type InfoRequest (line 335) | type InfoRequest = { type InfoResponse (line 341) | type InfoResponse = { type Invitation (line 346) | type Invitation = { type InvitationAcceptDto (line 354) | type InvitationAcceptDto = { type InvitationCreateDto (line 358) | type InvitationCreateDto = { type InvitationStatus (line 363) | type InvitationStatus = 'Pending' | 'Expired' | 'Rejected'; type InvitationUpdateDto (line 365) | type InvitationUpdateDto = { type Invoice (line 369) | type Invoice = { type InvoiceBankAccount (line 399) | type InvoiceBankAccount = { type InvoiceBankAccountUpdateDto (line 407) | type InvoiceBankAccountUpdateDto = { type InvoiceClient (line 415) | type InvoiceClient = { type InvoiceClientAddress (line 431) | type InvoiceClientAddress = { type InvoiceClientDeliveryAddress (line 438) | type InvoiceClientDeliveryAddress = { type InvoiceCreateDto (line 445) | type InvoiceCreateDto = { type InvoiceLine (line 464) | type InvoiceLine = { type InvoiceLineCreateDto (line 476) | type InvoiceLineCreateDto = { type InvoiceLineUpdateDto (line 484) | type InvoiceLineUpdateDto = { type InvoiceSendDto (line 493) | type InvoiceSendDto = { type InvoiceSetting (line 498) | type InvoiceSetting = { type InvoiceSettingUpsertDto (line 508) | type InvoiceSettingUpsertDto = { type InvoiceSettingsBankAccount (line 516) | type InvoiceSettingsBankAccount = { type InvoiceSettingsBankAccountUpsertDto (line 532) | type InvoiceSettingsBankAccountUpsertDto = { type InvoiceStatus (line 540) | type InvoiceStatus = 'Draft' | 'Issued' | 'Paid' | 'Overdue' | 'Cancelle... type InvoiceSupplier (line 542) | type InvoiceSupplier = { type InvoiceSupplierAddress (line 550) | type InvoiceSupplierAddress = { type InvoiceTemplate (line 557) | type InvoiceTemplate = { type InvoiceTemplateUpsertDto (line 563) | type InvoiceTemplateUpsertDto = { type InvoiceType (line 569) | type InvoiceType = 'Regular' | 'Corrective' | 'Advance'; type InvoiceUpdateClientDto (line 571) | type InvoiceUpdateClientDto = { type InvoiceUpdateDto (line 582) | type InvoiceUpdateDto = { type LicenseDto (line 602) | type LicenseDto = { type LoginRequest (line 616) | type LoginRequest = { type NotificationsDeviceTokenDeleteDto (line 623) | type NotificationsDeviceTokenDeleteDto = { type NotificationsDeviceTokenUpsertDto (line 627) | type NotificationsDeviceTokenUpsertDto = { type NotificationsTestSendDto (line 632) | type NotificationsTestSendDto = { type NumberingSetting (line 636) | type NumberingSetting = { type NumberingSettingUpsertDto (line 652) | type NumberingSettingUpsertDto = { type PaymentMethod (line 663) | type PaymentMethod = 'Cash' | 'BankTransfer'; type PersonalDocumentsSummary (line 665) | type PersonalDocumentsSummary = { type PushNotificationsProvider (line 671) | type PushNotificationsProvider = 1 | 2; type RecurrenceType (line 673) | type RecurrenceType = 'Daily' | 'Weekly' | 'Monthly' | 'Yearly'; type RecurringTask (line 675) | type RecurringTask = { type RecurringTaskBusiness (line 693) | type RecurringTaskBusiness = { type RecurringTaskCreateDto (line 698) | type RecurringTaskCreateDto = { type RecurringTaskUpdateDto (line 709) | type RecurringTaskUpdateDto = { type RefreshRequest (line 719) | type RefreshRequest = { type RegisterRequest (line 723) | type RegisterRequest = { type ResendConfirmationEmailRequest (line 728) | type ResendConfirmationEmailRequest = { type ResetPasswordRequest (line 732) | type ResetPasswordRequest = { type SendFeedbackRequest (line 738) | type SendFeedbackRequest = { type SequencePosition (line 748) | type SequencePosition = 'Start' | 'End'; type Task (line 750) | type Task = { type TaskComment (line 762) | type TaskComment = { type TaskRejectDto (line 771) | type TaskRejectDto = { type TaskStatus (line 775) | type TaskStatus = 'PendingClient' | 'PendingAccountant' | 'Completed' | ... type TaskSubmitDto (line 777) | type TaskSubmitDto = { type TaskUpdateDto (line 781) | type TaskUpdateDto = { type TasksCreateDto (line 788) | type TasksCreateDto = { type TwoFactorRequest (line 796) | type TwoFactorRequest = { type TwoFactorResponse (line 804) | type TwoFactorResponse = { type User (line 812) | type User = { type UserUpdateDto (line 821) | type UserUpdateDto = { type YearFormat (line 827) | type YearFormat = 'Full' | 'Short'; type AccessTokenResponseWritable (line 829) | type AccessTokenResponseWritable = { type PostApiV1AccountingCompaniesData (line 835) | type PostApiV1AccountingCompaniesData = { type PostApiV1AccountingCompaniesResponses (line 842) | type PostApiV1AccountingCompaniesResponses = { type PostApiV1AccountingCompaniesResponse (line 849) | type PostApiV1AccountingCompaniesResponse = PostApiV1AccountingCompanies... type DeleteApiV1AccountingCompaniesByIdData (line 851) | type DeleteApiV1AccountingCompaniesByIdData = { type DeleteApiV1AccountingCompaniesByIdResponses (line 860) | type DeleteApiV1AccountingCompaniesByIdResponses = { type PostApiV1AccountingCompaniesByIdData (line 867) | type PostApiV1AccountingCompaniesByIdData = { type PostApiV1AccountingCompaniesByIdResponses (line 876) | type PostApiV1AccountingCompaniesByIdResponses = { type PostApiV1AccountingCompaniesByIdResponse (line 883) | type PostApiV1AccountingCompaniesByIdResponse = PostApiV1AccountingCompa... type ApiVVersionApiVersionOdataAccountingCompaniesData (line 885) | type ApiVVersionApiVersionOdataAccountingCompaniesData = { type ApiVVersionApiVersionOdataAccountingCompaniesResponses (line 921) | type ApiVVersionApiVersionOdataAccountingCompaniesResponses = { type ApiVVersionApiVersionOdataAccountingCompaniesResponse (line 928) | type ApiVVersionApiVersionOdataAccountingCompaniesResponse = ApiVVersion... type ApiVVersionApiVersionOdataAccountingCompaniesCountData (line 930) | type ApiVVersionApiVersionOdataAccountingCompaniesCountData = { type ApiVVersionApiVersionOdataAccountingCompaniesCountResponses (line 966) | type ApiVVersionApiVersionOdataAccountingCompaniesCountResponses = { type ApiVVersionApiVersionOdataAccountingCompaniesCountResponse (line 973) | type ApiVVersionApiVersionOdataAccountingCompaniesCountResponse = ApiVVe... type PutApiV1AccountingCompanyMembershipsData (line 975) | type PutApiV1AccountingCompanyMembershipsData = { type PutApiV1AccountingCompanyMembershipsResponses (line 982) | type PutApiV1AccountingCompanyMembershipsResponses = { type PutApiV1AccountingCompanyMembershipsResponse (line 989) | type PutApiV1AccountingCompanyMembershipsResponse = PutApiV1AccountingCo... type DeleteApiV1AccountingCompanyMembershipsByIdData (line 991) | type DeleteApiV1AccountingCompanyMembershipsByIdData = { type DeleteApiV1AccountingCompanyMembershipsByIdResponses (line 1000) | type DeleteApiV1AccountingCompanyMembershipsByIdResponses = { type ApiVVersionApiVersionOdataAccountingCompanyMembershipsData (line 1007) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsData = { type ApiVVersionApiVersionOdataAccountingCompanyMembershipsResponses (line 1043) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsResponses = { type ApiVVersionApiVersionOdataAccountingCompanyMembershipsResponse (line 1050) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsResponse = Ap... type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountData (line 1052) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountData = { type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountResponses (line 1088) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountResponse... type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountResponse (line 1095) | type ApiVVersionApiVersionOdataAccountingCompanyMembershipsCountResponse... type PutApiV1BankAccountsData (line 1097) | type PutApiV1BankAccountsData = { type PutApiV1BankAccountsResponses (line 1104) | type PutApiV1BankAccountsResponses = { type PutApiV1BankAccountsResponse (line 1111) | type PutApiV1BankAccountsResponse = PutApiV1BankAccountsResponses[keyof ... type DeleteApiV1BankAccountsByIdData (line 1113) | type DeleteApiV1BankAccountsByIdData = { type DeleteApiV1BankAccountsByIdResponses (line 1122) | type DeleteApiV1BankAccountsByIdResponses = { type ApiVVersionApiVersionOdataBankAccountsData (line 1129) | type ApiVVersionApiVersionOdataBankAccountsData = { type ApiVVersionApiVersionOdataBankAccountsResponses (line 1165) | type ApiVVersionApiVersionOdataBankAccountsResponses = { type ApiVVersionApiVersionOdataBankAccountsResponse (line 1172) | type ApiVVersionApiVersionOdataBankAccountsResponse = ApiVVersionApiVers... type ApiVVersionApiVersionOdataBankAccountsCountData (line 1174) | type ApiVVersionApiVersionOdataBankAccountsCountData = { type ApiVVersionApiVersionOdataBankAccountsCountResponses (line 1210) | type ApiVVersionApiVersionOdataBankAccountsCountResponses = { type ApiVVersionApiVersionOdataBankAccountsCountResponse (line 1217) | type ApiVVersionApiVersionOdataBankAccountsCountResponse = ApiVVersionAp... type PutApiV1BusinessAccountantAssignmentsData (line 1219) | type PutApiV1BusinessAccountantAssignmentsData = { type PutApiV1BusinessAccountantAssignmentsResponses (line 1226) | type PutApiV1BusinessAccountantAssignmentsResponses = { type PutApiV1BusinessAccountantAssignmentsResponse (line 1233) | type PutApiV1BusinessAccountantAssignmentsResponse = PutApiV1BusinessAcc... type DeleteApiV1BusinessAccountantAssignmentsByIdData (line 1235) | type DeleteApiV1BusinessAccountantAssignmentsByIdData = { type DeleteApiV1BusinessAccountantAssignmentsByIdResponses (line 1244) | type DeleteApiV1BusinessAccountantAssignmentsByIdResponses = { type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsData (line 1251) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsData = { type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsResponses (line 1287) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsResponses = { type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsResponse (line 1294) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsResponse = A... type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountData (line 1296) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountData = { type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountResponses (line 1332) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountRespons... type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountResponse (line 1339) | type ApiVVersionApiVersionOdataBusinessAccountantAssignmentsCountRespons... type GetApiV1BusinessDocumentsByIdRawData (line 1341) | type GetApiV1BusinessDocumentsByIdRawData = { type GetApiV1BusinessDocumentsByIdRawResponses (line 1350) | type GetApiV1BusinessDocumentsByIdRawResponses = { type GetApiV1BusinessDocumentsByIdRawResponse (line 1361) | type GetApiV1BusinessDocumentsByIdRawResponse = GetApiV1BusinessDocument... type PostApiV1BusinessDocumentsData (line 1363) | type PostApiV1BusinessDocumentsData = { type PostApiV1BusinessDocumentsResponses (line 1376) | type PostApiV1BusinessDocumentsResponses = { type PostApiV1BusinessDocumentsResponse (line 1383) | type PostApiV1BusinessDocumentsResponse = PostApiV1BusinessDocumentsResp... type DeleteApiV1BusinessDocumentsByIdData (line 1385) | type DeleteApiV1BusinessDocumentsByIdData = { type DeleteApiV1BusinessDocumentsByIdResponses (line 1394) | type DeleteApiV1BusinessDocumentsByIdResponses = { type DeleteApiV1BusinessDocumentsByIdResponse (line 1401) | type DeleteApiV1BusinessDocumentsByIdResponse = DeleteApiV1BusinessDocum... type PutApiV1BusinessDocumentsByIdData (line 1403) | type PutApiV1BusinessDocumentsByIdData = { type PutApiV1BusinessDocumentsByIdResponses (line 1412) | type PutApiV1BusinessDocumentsByIdResponses = { type PutApiV1BusinessDocumentsByIdResponse (line 1419) | type PutApiV1BusinessDocumentsByIdResponse = PutApiV1BusinessDocumentsBy... type PostApiV1BusinessDocumentsByIdApproveData (line 1421) | type PostApiV1BusinessDocumentsByIdApproveData = { type PostApiV1BusinessDocumentsByIdApproveResponses (line 1430) | type PostApiV1BusinessDocumentsByIdApproveResponses = { type PostApiV1BusinessDocumentsByIdApproveResponse (line 1437) | type PostApiV1BusinessDocumentsByIdApproveResponse = PostApiV1BusinessDo... type PostApiV1BusinessDocumentsByIdUnapproveData (line 1439) | type PostApiV1BusinessDocumentsByIdUnapproveData = { type PostApiV1BusinessDocumentsByIdUnapproveResponses (line 1448) | type PostApiV1BusinessDocumentsByIdUnapproveResponses = { type PostApiV1BusinessDocumentsByIdUnapproveResponse (line 1455) | type PostApiV1BusinessDocumentsByIdUnapproveResponse = PostApiV1Business... type PostApiV1BusinessDocumentsByIdMoveToPersonalData (line 1457) | type PostApiV1BusinessDocumentsByIdMoveToPersonalData = { type PostApiV1BusinessDocumentsByIdMoveToPersonalResponses (line 1466) | type PostApiV1BusinessDocumentsByIdMoveToPersonalResponses = { type PostApiV1BusinessDocumentsByIdMoveToBusinessData (line 1473) | type PostApiV1BusinessDocumentsByIdMoveToBusinessData = { type PostApiV1BusinessDocumentsByIdMoveToBusinessResponses (line 1482) | type PostApiV1BusinessDocumentsByIdMoveToBusinessResponses = { type PostApiV1BusinessDocumentsByIdMoveToBusinessResponse (line 1489) | type PostApiV1BusinessDocumentsByIdMoveToBusinessResponse = PostApiV1Bus... type ApiVVersionApiVersionOdataBusinessDocumentActivitiesData (line 1491) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesData = { type ApiVVersionApiVersionOdataBusinessDocumentActivitiesResponses (line 1528) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesResponses = { type ApiVVersionApiVersionOdataBusinessDocumentActivitiesResponse (line 1535) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesResponse = ApiV... type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountData (line 1537) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountData = { type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountResponses (line 1574) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountResponses = { type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountResponse (line 1581) | type ApiVVersionApiVersionOdataBusinessDocumentActivitiesCountResponse =... type ApiVVersionApiVersionOdataBusinessDocumentsData (line 1583) | type ApiVVersionApiVersionOdataBusinessDocumentsData = { type ApiVVersionApiVersionOdataBusinessDocumentsResponses (line 1620) | type ApiVVersionApiVersionOdataBusinessDocumentsResponses = { type ApiVVersionApiVersionOdataBusinessDocumentsResponse (line 1627) | type ApiVVersionApiVersionOdataBusinessDocumentsResponse = ApiVVersionAp... type ApiVVersionApiVersionOdataBusinessDocumentsCountData (line 1629) | type ApiVVersionApiVersionOdataBusinessDocumentsCountData = { type ApiVVersionApiVersionOdataBusinessDocumentsCountResponses (line 1666) | type ApiVVersionApiVersionOdataBusinessDocumentsCountResponses = { type ApiVVersionApiVersionOdataBusinessDocumentsCountResponse (line 1673) | type ApiVVersionApiVersionOdataBusinessDocumentsCountResponse = ApiVVers... type ApiVVersionApiVersionOdataBusinessDocumentsSummariesData (line 1675) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesData = { type ApiVVersionApiVersionOdataBusinessDocumentsSummariesResponses (line 1712) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesResponses = { type ApiVVersionApiVersionOdataBusinessDocumentsSummariesResponse (line 1719) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesResponse = ApiV... type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountData (line 1721) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountData = { type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountResponses (line 1758) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountResponses = { type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountResponse (line 1765) | type ApiVVersionApiVersionOdataBusinessDocumentsSummariesCountResponse =... type GetApiV1BusinessesByIdDocumentTypesSummaryData (line 1767) | type GetApiV1BusinessesByIdDocumentTypesSummaryData = { type GetApiV1BusinessesByIdDocumentTypesSummaryResponses (line 1776) | type GetApiV1BusinessesByIdDocumentTypesSummaryResponses = { type GetApiV1BusinessesByIdDocumentTypesSummaryResponse (line 1783) | type GetApiV1BusinessesByIdDocumentTypesSummaryResponse = GetApiV1Busine... type PostApiV1BusinessesData (line 1785) | type PostApiV1BusinessesData = { type PostApiV1BusinessesResponses (line 1792) | type PostApiV1BusinessesResponses = { type PostApiV1BusinessesResponse (line 1799) | type PostApiV1BusinessesResponse = PostApiV1BusinessesResponses[keyof Po... type DeleteApiV1BusinessesByIdData (line 1801) | type DeleteApiV1BusinessesByIdData = { type DeleteApiV1BusinessesByIdResponses (line 1810) | type DeleteApiV1BusinessesByIdResponses = { type PutApiV1BusinessesByIdData (line 1817) | type PutApiV1BusinessesByIdData = { type PutApiV1BusinessesByIdResponses (line 1826) | type PutApiV1BusinessesByIdResponses = { type PutApiV1BusinessesByIdResponse (line 1833) | type PutApiV1BusinessesByIdResponse = PutApiV1BusinessesByIdResponses[ke... type PutApiV1BusinessesByIdContactData (line 1835) | type PutApiV1BusinessesByIdContactData = { type PutApiV1BusinessesByIdContactResponses (line 1844) | type PutApiV1BusinessesByIdContactResponses = { type PostApiV1BusinessesByIdDisconnectData (line 1851) | type PostApiV1BusinessesByIdDisconnectData = { type PostApiV1BusinessesByIdDisconnectResponses (line 1860) | type PostApiV1BusinessesByIdDisconnectResponses = { type PostApiV1BusinessesByIdDisconnectResponse (line 1867) | type PostApiV1BusinessesByIdDisconnectResponse = PostApiV1BusinessesById... type ApiVVersionApiVersionOdataBusinessesData (line 1869) | type ApiVVersionApiVersionOdataBusinessesData = { type ApiVVersionApiVersionOdataBusinessesResponses (line 1906) | type ApiVVersionApiVersionOdataBusinessesResponses = { type ApiVVersionApiVersionOdataBusinessesResponse (line 1913) | type ApiVVersionApiVersionOdataBusinessesResponse = ApiVVersionApiVersio... type ApiVVersionApiVersionOdataBusinessesCountData (line 1915) | type ApiVVersionApiVersionOdataBusinessesCountData = { type ApiVVersionApiVersionOdataBusinessesCountResponses (line 1952) | type ApiVVersionApiVersionOdataBusinessesCountResponses = { type ApiVVersionApiVersionOdataBusinessesCountResponse (line 1959) | type ApiVVersionApiVersionOdataBusinessesCountResponse = ApiVVersionApiV... type ApiVVersionApiVersionOdataBusinessesKeyData (line 1961) | type ApiVVersionApiVersionOdataBusinessesKeyData = { type ApiVVersionApiVersionOdataBusinessesKeyResponses (line 1978) | type ApiVVersionApiVersionOdataBusinessesKeyResponses = { type ApiVVersionApiVersionOdataBusinessesKeyResponse (line 1985) | type ApiVVersionApiVersionOdataBusinessesKeyResponse = ApiVVersionApiVer... type ApiVVersionApiVersionOdataBusinessesKey2Data (line 1987) | type ApiVVersionApiVersionOdataBusinessesKey2Data = { type ApiVVersionApiVersionOdataBusinessesKey2Responses (line 2004) | type ApiVVersionApiVersionOdataBusinessesKey2Responses = { type ApiVVersionApiVersionOdataBusinessesKey2Response (line 2011) | type ApiVVersionApiVersionOdataBusinessesKey2Response = ApiVVersionApiVe... type PutApiV1BusinessMembershipsData (line 2013) | type PutApiV1BusinessMembershipsData = { type PutApiV1BusinessMembershipsResponses (line 2020) | type PutApiV1BusinessMembershipsResponses = { type PutApiV1BusinessMembershipsResponse (line 2027) | type PutApiV1BusinessMembershipsResponse = PutApiV1BusinessMembershipsRe... type ApiVVersionApiVersionOdataBusinessSummariesData (line 2029) | type ApiVVersionApiVersionOdataBusinessSummariesData = { type ApiVVersionApiVersionOdataBusinessSummariesResponses (line 2067) | type ApiVVersionApiVersionOdataBusinessSummariesResponses = { type ApiVVersionApiVersionOdataBusinessSummariesResponse (line 2074) | type ApiVVersionApiVersionOdataBusinessSummariesResponse = ApiVVersionAp... type ApiVVersionApiVersionOdataBusinessSummariesCountData (line 2076) | type ApiVVersionApiVersionOdataBusinessSummariesCountData = { type ApiVVersionApiVersionOdataBusinessSummariesCountResponses (line 2114) | type ApiVVersionApiVersionOdataBusinessSummariesCountResponses = { type ApiVVersionApiVersionOdataBusinessSummariesCountResponse (line 2121) | type ApiVVersionApiVersionOdataBusinessSummariesCountResponse = ApiVVers... type PostApiV1CounterpartiesData (line 2123) | type PostApiV1CounterpartiesData = { type PostApiV1CounterpartiesResponses (line 2130) | type PostApiV1CounterpartiesResponses = { type PostApiV1CounterpartiesResponse (line 2137) | type PostApiV1CounterpartiesResponse = PostApiV1CounterpartiesResponses[... type DeleteApiV1CounterpartiesByIdData (line 2139) | type DeleteApiV1CounterpartiesByIdData = { type DeleteApiV1CounterpartiesByIdResponses (line 2148) | type DeleteApiV1CounterpartiesByIdResponses = { type PatchApiV1CounterpartiesByIdData (line 2155) | type PatchApiV1CounterpartiesByIdData = { type PatchApiV1CounterpartiesByIdResponses (line 2164) | type PatchApiV1CounterpartiesByIdResponses = { type PatchApiV1CounterpartiesByIdResponse (line 2171) | type PatchApiV1CounterpartiesByIdResponse = PatchApiV1CounterpartiesById... type ApiVVersionApiVersionOdataCounterpartiesData (line 2173) | type ApiVVersionApiVersionOdataCounterpartiesData = { type ApiVVersionApiVersionOdataCounterpartiesResponses (line 2209) | type ApiVVersionApiVersionOdataCounterpartiesResponses = { type ApiVVersionApiVersionOdataCounterpartiesResponse (line 2216) | type ApiVVersionApiVersionOdataCounterpartiesResponse = ApiVVersionApiVe... type ApiVVersionApiVersionOdataCounterpartiesCountData (line 2218) | type ApiVVersionApiVersionOdataCounterpartiesCountData = { type ApiVVersionApiVersionOdataCounterpartiesCountResponses (line 2254) | type ApiVVersionApiVersionOdataCounterpartiesCountResponses = { type ApiVVersionApiVersionOdataCounterpartiesCountResponse (line 2261) | type ApiVVersionApiVersionOdataCounterpartiesCountResponse = ApiVVersion... type PutApiV1DataBoxCredentialsData (line 2263) | type PutApiV1DataBoxCredentialsData = { type PutApiV1DataBoxCredentialsResponses (line 2270) | type PutApiV1DataBoxCredentialsResponses = { type PutApiV1DataBoxCredentialsResponse (line 2277) | type PutApiV1DataBoxCredentialsResponse = PutApiV1DataBoxCredentialsResp... type DeleteApiV1DataBoxCredentialsByIdData (line 2279) | type DeleteApiV1DataBoxCredentialsByIdData = { type DeleteApiV1DataBoxCredentialsByIdResponses (line 2288) | type DeleteApiV1DataBoxCredentialsByIdResponses = { type ApiVVersionApiVersionOdataDataBoxCredentialsData (line 2295) | type ApiVVersionApiVersionOdataDataBoxCredentialsData = { type ApiVVersionApiVersionOdataDataBoxCredentialsResponses (line 2332) | type ApiVVersionApiVersionOdataDataBoxCredentialsResponses = { type ApiVVersionApiVersionOdataDataBoxCredentialsResponse (line 2339) | type ApiVVersionApiVersionOdataDataBoxCredentialsResponse = ApiVVersionA... type ApiVVersionApiVersionOdataDataBoxCredentialsCountData (line 2341) | type ApiVVersionApiVersionOdataDataBoxCredentialsCountData = { type ApiVVersionApiVersionOdataDataBoxCredentialsCountResponses (line 2378) | type ApiVVersionApiVersionOdataDataBoxCredentialsCountResponses = { type ApiVVersionApiVersionOdataDataBoxCredentialsCountResponse (line 2385) | type ApiVVersionApiVersionOdataDataBoxCredentialsCountResponse = ApiVVer... type GetApiDevData (line 2387) | type GetApiDevData = { type GetApiDevResponses (line 2394) | type GetApiDevResponses = { type GetApiDevReseedDbData (line 2401) | type GetApiDevReseedDbData = { type GetApiDevReseedDbResponses (line 2408) | type GetApiDevReseedDbResponses = { type GetApiDevDbResetData (line 2415) | type GetApiDevDbResetData = { type GetApiDevDbResetResponses (line 2422) | type GetApiDevDbResetResponses = { type GetApiDevDbReset2Data (line 2429) | type GetApiDevDbReset2Data = { type GetApiDevDbReset2Responses (line 2436) | type GetApiDevDbReset2Responses = { type GetApiDevDbCreateData (line 2443) | type GetApiDevDbCreateData = { type GetApiDevDbCreateResponses (line 2450) | type GetApiDevDbCreateResponses = { type GetApiDevDbTouchData (line 2457) | type GetApiDevDbTouchData = { type GetApiDevDbTouchResponses (line 2464) | type GetApiDevDbTouchResponses = { type GetApiDevSeedData (line 2471) | type GetApiDevSeedData = { type GetApiDevSeedResponses (line 2478) | type GetApiDevSeedResponses = { type GetApiDevSeedAllData (line 2485) | type GetApiDevSeedAllData = { type GetApiDevSeedAllResponses (line 2492) | type GetApiDevSeedAllResponses = { type GetApiDevSeedProdData (line 2499) | type GetApiDevSeedProdData = { type GetApiDevSeedProdResponses (line 2506) | type GetApiDevSeedProdResponses = { type GetApiDevJobProcessRecurringTasksData (line 2513) | type GetApiDevJobProcessRecurringTasksData = { type GetApiDevJobProcessRecurringTasksResponses (line 2522) | type GetApiDevJobProcessRecurringTasksResponses = { type GetApiDevNotificationsSendTestData (line 2529) | type GetApiDevNotificationsSendTestData = { type GetApiDevNotificationsSendTestResponses (line 2538) | type GetApiDevNotificationsSendTestResponses = { type GetApiDevConfirmEmailData (line 2545) | type GetApiDevConfirmEmailData = { type GetApiDevConfirmEmailResponses (line 2554) | type GetApiDevConfirmEmailResponses = { type GetApiDevEmailSendTestData (line 2561) | type GetApiDevEmailSendTestData = { type GetApiDevEmailSendTestResponses (line 2572) | type GetApiDevEmailSendTestResponses = { type DeleteApiV1NotificationsDeviceTokensData (line 2579) | type DeleteApiV1NotificationsDeviceTokensData = { type DeleteApiV1NotificationsDeviceTokensResponses (line 2586) | type DeleteApiV1NotificationsDeviceTokensResponses = { type PutApiV1NotificationsDeviceTokensData (line 2593) | type PutApiV1NotificationsDeviceTokensData = { type PutApiV1NotificationsDeviceTokensResponses (line 2600) | type PutApiV1NotificationsDeviceTokensResponses = { type ApiVVersionApiVersionOdataDocumentTypesData (line 2607) | type ApiVVersionApiVersionOdataDocumentTypesData = { type ApiVVersionApiVersionOdataDocumentTypesResponses (line 2643) | type ApiVVersionApiVersionOdataDocumentTypesResponses = { type ApiVVersionApiVersionOdataDocumentTypesResponse (line 2650) | type ApiVVersionApiVersionOdataDocumentTypesResponse = ApiVVersionApiVer... type ApiVVersionApiVersionOdataDocumentTypesCountData (line 2652) | type ApiVVersionApiVersionOdataDocumentTypesCountData = { type ApiVVersionApiVersionOdataDocumentTypesCountResponses (line 2688) | type ApiVVersionApiVersionOdataDocumentTypesCountResponses = { type ApiVVersionApiVersionOdataDocumentTypesCountResponse (line 2695) | type ApiVVersionApiVersionOdataDocumentTypesCountResponse = ApiVVersionA... type PostApiV1FeedbackData (line 2697) | type PostApiV1FeedbackData = { type PostApiV1FeedbackResponses (line 2704) | type PostApiV1FeedbackResponses = { type PostApiV1InvitationsData (line 2711) | type PostApiV1InvitationsData = { type PostApiV1InvitationsResponses (line 2718) | type PostApiV1InvitationsResponses = { type PostApiV1InvitationsResponse (line 2725) | type PostApiV1InvitationsResponse = PostApiV1InvitationsResponses[keyof ... type PostApiV1InvitationsByIdAcceptData (line 2727) | type PostApiV1InvitationsByIdAcceptData = { type PostApiV1InvitationsByIdAcceptResponses (line 2736) | type PostApiV1InvitationsByIdAcceptResponses = { type PostApiV1InvitationsByIdRejectData (line 2743) | type PostApiV1InvitationsByIdRejectData = { type PostApiV1InvitationsByIdRejectResponses (line 2752) | type PostApiV1InvitationsByIdRejectResponses = { type DeleteApiV1InvitationsByIdData (line 2759) | type DeleteApiV1InvitationsByIdData = { type DeleteApiV1InvitationsByIdResponses (line 2768) | type DeleteApiV1InvitationsByIdResponses = { type PatchApiV1InvitationsByIdData (line 2775) | type PatchApiV1InvitationsByIdData = { type PatchApiV1InvitationsByIdResponses (line 2784) | type PatchApiV1InvitationsByIdResponses = { type PatchApiV1InvitationsByIdResponse (line 2791) | type PatchApiV1InvitationsByIdResponse = PatchApiV1InvitationsByIdRespon... type ApiVVersionApiVersionOdataInvitationsData (line 2793) | type ApiVVersionApiVersionOdataInvitationsData = { type ApiVVersionApiVersionOdataInvitationsResponses (line 2829) | type ApiVVersionApiVersionOdataInvitationsResponses = { type ApiVVersionApiVersionOdataInvitationsResponse (line 2836) | type ApiVVersionApiVersionOdataInvitationsResponse = ApiVVersionApiVersi... type ApiVVersionApiVersionOdataInvitationsCountData (line 2838) | type ApiVVersionApiVersionOdataInvitationsCountData = { type ApiVVersionApiVersionOdataInvitationsCountResponses (line 2874) | type ApiVVersionApiVersionOdataInvitationsCountResponses = { type ApiVVersionApiVersionOdataInvitationsCountResponse (line 2881) | type ApiVVersionApiVersionOdataInvitationsCountResponse = ApiVVersionApi... type PostApiV1InvoicesData (line 2883) | type PostApiV1InvoicesData = { type PostApiV1InvoicesResponses (line 2890) | type PostApiV1InvoicesResponses = { type PostApiV1InvoicesResponse (line 2897) | type PostApiV1InvoicesResponse = PostApiV1InvoicesResponses[keyof PostAp... type DeleteApiV1InvoicesByIdData (line 2899) | type DeleteApiV1InvoicesByIdData = { type DeleteApiV1InvoicesByIdResponses (line 2908) | type DeleteApiV1InvoicesByIdResponses = { type PatchApiV1InvoicesByIdData (line 2915) | type PatchApiV1InvoicesByIdData = { type PatchApiV1InvoicesByIdResponses (line 2924) | type PatchApiV1InvoicesByIdResponses = { type PatchApiV1InvoicesByIdResponse (line 2931) | type PatchApiV1InvoicesByIdResponse = PatchApiV1InvoicesByIdResponses[ke... type GetApiV1InvoicesByIdPreviewData (line 2933) | type GetApiV1InvoicesByIdPreviewData = { type GetApiV1InvoicesByIdPreviewResponses (line 2942) | type GetApiV1InvoicesByIdPreviewResponses = { type PostApiV1InvoicesByIdSendData (line 2949) | type PostApiV1InvoicesByIdSendData = { type PostApiV1InvoicesByIdSendResponses (line 2958) | type PostApiV1InvoicesByIdSendResponses = { type PostApiV1InvoicesByIdSendResponse (line 2965) | type PostApiV1InvoicesByIdSendResponse = PostApiV1InvoicesByIdSendRespon... type PostApiV1InvoicesByIdSnapshotData (line 2967) | type PostApiV1InvoicesByIdSnapshotData = { type PostApiV1InvoicesByIdSnapshotResponses (line 2976) | type PostApiV1InvoicesByIdSnapshotResponses = { type PostApiV1InvoicesByIdSnapshotResponse (line 2983) | type PostApiV1InvoicesByIdSnapshotResponse = PostApiV1InvoicesByIdSnapsh... type ApiVVersionApiVersionOdataInvoicesData (line 2985) | type ApiVVersionApiVersionOdataInvoicesData = { type ApiVVersionApiVersionOdataInvoicesResponses (line 3021) | type ApiVVersionApiVersionOdataInvoicesResponses = { type ApiVVersionApiVersionOdataInvoicesResponse (line 3028) | type ApiVVersionApiVersionOdataInvoicesResponse = ApiVVersionApiVersionO... type ApiVVersionApiVersionOdataInvoicesCountData (line 3030) | type ApiVVersionApiVersionOdataInvoicesCountData = { type ApiVVersionApiVersionOdataInvoicesCountResponses (line 3066) | type ApiVVersionApiVersionOdataInvoicesCountResponses = { type ApiVVersionApiVersionOdataInvoicesCountResponse (line 3073) | type ApiVVersionApiVersionOdataInvoicesCountResponse = ApiVVersionApiVer... type PutApiV1InvoiceSettingsData (line 3075) | type PutApiV1InvoiceSettingsData = { type PutApiV1InvoiceSettingsResponses (line 3082) | type PutApiV1InvoiceSettingsResponses = { type PutApiV1InvoiceSettingsResponse (line 3089) | type PutApiV1InvoiceSettingsResponse = PutApiV1InvoiceSettingsResponses[... type ApiVVersionApiVersionOdataInvoiceSettingsData (line 3091) | type ApiVVersionApiVersionOdataInvoiceSettingsData = { type ApiVVersionApiVersionOdataInvoiceSettingsResponses (line 3127) | type ApiVVersionApiVersionOdataInvoiceSettingsResponses = { type ApiVVersionApiVersionOdataInvoiceSettingsResponse (line 3134) | type ApiVVersionApiVersionOdataInvoiceSettingsResponse = ApiVVersionApiV... type ApiVVersionApiVersionOdataInvoiceSettingsCountData (line 3136) | type ApiVVersionApiVersionOdataInvoiceSettingsCountData = { type ApiVVersionApiVersionOdataInvoiceSettingsCountResponses (line 3172) | type ApiVVersionApiVersionOdataInvoiceSettingsCountResponses = { type ApiVVersionApiVersionOdataInvoiceSettingsCountResponse (line 3179) | type ApiVVersionApiVersionOdataInvoiceSettingsCountResponse = ApiVVersio... type ApiVVersionApiVersionOdataLicensesData (line 3181) | type ApiVVersionApiVersionOdataLicensesData = { type ApiVVersionApiVersionOdataLicensesResponses (line 3217) | type ApiVVersionApiVersionOdataLicensesResponses = { type ApiVVersionApiVersionOdataLicensesResponse (line 3224) | type ApiVVersionApiVersionOdataLicensesResponse = ApiVVersionApiVersionO... type ApiVVersionApiVersionOdataLicensesCountData (line 3226) | type ApiVVersionApiVersionOdataLicensesCountData = { type ApiVVersionApiVersionOdataLicensesCountResponses (line 3262) | type ApiVVersionApiVersionOdataLicensesCountResponses = { type ApiVVersionApiVersionOdataLicensesCountResponse (line 3269) | type ApiVVersionApiVersionOdataLicensesCountResponse = ApiVVersionApiVer... type PostApiV1NotificationsTestData (line 3271) | type PostApiV1NotificationsTestData = { type PostApiV1NotificationsTestResponses (line 3278) | type PostApiV1NotificationsTestResponses = { type GetApiV1PersonalDocumentsByIdRawData (line 3285) | type GetApiV1PersonalDocumentsByIdRawData = { type GetApiV1PersonalDocumentsByIdRawResponses (line 3294) | type GetApiV1PersonalDocumentsByIdRawResponses = { type GetApiV1PersonalDocumentsByIdRawResponse (line 3305) | type GetApiV1PersonalDocumentsByIdRawResponse = GetApiV1PersonalDocument... type PostApiV1PersonalDocumentsData (line 3307) | type PostApiV1PersonalDocumentsData = { type PostApiV1PersonalDocumentsResponses (line 3317) | type PostApiV1PersonalDocumentsResponses = { type PostApiV1PersonalDocumentsResponse (line 3324) | type PostApiV1PersonalDocumentsResponse = PostApiV1PersonalDocumentsResp... type PostApiV1PersonalDocumentsByIdMoveToBusinessData (line 3326) | type PostApiV1PersonalDocumentsByIdMoveToBusinessData = { type PostApiV1PersonalDocumentsByIdMoveToBusinessResponses (line 3335) | type PostApiV1PersonalDocumentsByIdMoveToBusinessResponses = { type DeleteApiV1PersonalDocumentsByIdData (line 3342) | type DeleteApiV1PersonalDocumentsByIdData = { type DeleteApiV1PersonalDocumentsByIdResponses (line 3351) | type DeleteApiV1PersonalDocumentsByIdResponses = { type DeleteApiV1PersonalDocumentsByIdResponse (line 3358) | type DeleteApiV1PersonalDocumentsByIdResponse = DeleteApiV1PersonalDocum... type GetApiV1PersonalDocumentsSummaryData (line 3360) | type GetApiV1PersonalDocumentsSummaryData = { type GetApiV1PersonalDocumentsSummaryResponses (line 3367) | type GetApiV1PersonalDocumentsSummaryResponses = { type GetApiV1PersonalDocumentsSummaryResponse (line 3374) | type GetApiV1PersonalDocumentsSummaryResponse = GetApiV1PersonalDocument... type ApiVVersionApiVersionOdataPersonalDocumentsData (line 3376) | type ApiVVersionApiVersionOdataPersonalDocumentsData = { type ApiVVersionApiVersionOdataPersonalDocumentsResponses (line 3412) | type ApiVVersionApiVersionOdataPersonalDocumentsResponses = { type ApiVVersionApiVersionOdataPersonalDocumentsResponse (line 3419) | type ApiVVersionApiVersionOdataPersonalDocumentsResponse = ApiVVersionAp... type ApiVVersionApiVersionOdataPersonalDocumentsCountData (line 3421) | type ApiVVersionApiVersionOdataPersonalDocumentsCountData = { type ApiVVersionApiVersionOdataPersonalDocumentsCountResponses (line 3457) | type ApiVVersionApiVersionOdataPersonalDocumentsCountResponses = { type ApiVVersionApiVersionOdataPersonalDocumentsCountResponse (line 3464) | type ApiVVersionApiVersionOdataPersonalDocumentsCountResponse = ApiVVers... type PostApiV1RecurringTasksData (line 3466) | type PostApiV1RecurringTasksData = { type PostApiV1RecurringTasksResponses (line 3473) | type PostApiV1RecurringTasksResponses = { type PostApiV1RecurringTasksResponse (line 3480) | type PostApiV1RecurringTasksResponse = PostApiV1RecurringTasksResponses[... type DeleteApiV1RecurringTasksByIdData (line 3482) | type DeleteApiV1RecurringTasksByIdData = { type DeleteApiV1RecurringTasksByIdResponses (line 3491) | type DeleteApiV1RecurringTasksByIdResponses = { type PatchApiV1RecurringTasksByIdData (line 3498) | type PatchApiV1RecurringTasksByIdData = { type PatchApiV1RecurringTasksByIdResponses (line 3507) | type PatchApiV1RecurringTasksByIdResponses = { type PatchApiV1RecurringTasksByIdResponse (line 3514) | type PatchApiV1RecurringTasksByIdResponse = PatchApiV1RecurringTasksById... type ApiVVersionApiVersionOdataRecurringTasksData (line 3516) | type ApiVVersionApiVersionOdataRecurringTasksData = { type ApiVVersionApiVersionOdataRecurringTasksResponses (line 3552) | type ApiVVersionApiVersionOdataRecurringTasksResponses = { type ApiVVersionApiVersionOdataRecurringTasksResponse (line 3559) | type ApiVVersionApiVersionOdataRecurringTasksResponse = ApiVVersionApiVe... type ApiVVersionApiVersionOdataRecurringTasksCountData (line 3561) | type ApiVVersionApiVersionOdataRecurringTasksCountData = { type ApiVVersionApiVersionOdataRecurringTasksCountResponses (line 3597) | type ApiVVersionApiVersionOdataRecurringTasksCountResponses = { type ApiVVersionApiVersionOdataRecurringTasksCountResponse (line 3604) | type ApiVVersionApiVersionOdataRecurringTasksCountResponse = ApiVVersion... type GetData (line 3606) | type GetData = { type GetResponses (line 3613) | type GetResponses = { type PostApiV1TasksData (line 3620) | type PostApiV1TasksData = { type PostApiV1TasksResponses (line 3627) | type PostApiV1TasksResponses = { type PostApiV1TasksResponse (line 3634) | type PostApiV1TasksResponse = PostApiV1TasksResponses[keyof PostApiV1Tas... type PutApiV1TasksByIdData (line 3636) | type PutApiV1TasksByIdData = { type PutApiV1TasksByIdResponses (line 3645) | type PutApiV1TasksByIdResponses = { type PutApiV1TasksByIdResponse (line 3652) | type PutApiV1TasksByIdResponse = PutApiV1TasksByIdResponses[keyof PutApi... type PostApiV1TasksByIdSubmitData (line 3654) | type PostApiV1TasksByIdSubmitData = { type PostApiV1TasksByIdSubmitResponses (line 3663) | type PostApiV1TasksByIdSubmitResponses = { type PostApiV1TasksByIdSubmitResponse (line 3670) | type PostApiV1TasksByIdSubmitResponse = PostApiV1TasksByIdSubmitResponse... type PostApiV1TasksByIdApproveData (line 3672) | type PostApiV1TasksByIdApproveData = { type PostApiV1TasksByIdApproveResponses (line 3681) | type PostApiV1TasksByIdApproveResponses = { type PostApiV1TasksByIdApproveResponse (line 3688) | type PostApiV1TasksByIdApproveResponse = PostApiV1TasksByIdApproveRespon... type PostApiV1TasksByIdRejectData (line 3690) | type PostApiV1TasksByIdRejectData = { type PostApiV1TasksByIdRejectResponses (line 3699) | type PostApiV1TasksByIdRejectResponses = { type PostApiV1TasksByIdRejectResponse (line 3706) | type PostApiV1TasksByIdRejectResponse = PostApiV1TasksByIdRejectResponse... type GetApiV1TasksByIdCommentsData (line 3708) | type GetApiV1TasksByIdCommentsData = { type GetApiV1TasksByIdCommentsResponses (line 3717) | type GetApiV1TasksByIdCommentsResponses = { type GetApiV1TasksByIdCommentsResponse (line 3724) | type GetApiV1TasksByIdCommentsResponse = GetApiV1TasksByIdCommentsRespon... type GetApiV1TasksByIdDocumentsData (line 3726) | type GetApiV1TasksByIdDocumentsData = { type GetApiV1TasksByIdDocumentsResponses (line 3735) | type GetApiV1TasksByIdDocumentsResponses = { type GetApiV1TasksByIdDocumentsResponse (line 3742) | type GetApiV1TasksByIdDocumentsResponse = GetApiV1TasksByIdDocumentsResp... type ApiVVersionApiVersionOdataTasksData (line 3744) | type ApiVVersionApiVersionOdataTasksData = { type ApiVVersionApiVersionOdataTasksResponses (line 3781) | type ApiVVersionApiVersionOdataTasksResponses = { type ApiVVersionApiVersionOdataTasksResponse (line 3788) | type ApiVVersionApiVersionOdataTasksResponse = ApiVVersionApiVersionOdat... type ApiVVersionApiVersionOdataTasksCountData (line 3790) | type ApiVVersionApiVersionOdataTasksCountData = { type ApiVVersionApiVersionOdataTasksCountResponses (line 3827) | type ApiVVersionApiVersionOdataTasksCountResponses = { type ApiVVersionApiVersionOdataTasksCountResponse (line 3834) | type ApiVVersionApiVersionOdataTasksCountResponse = ApiVVersionApiVersio... type ApiVVersionApiVersionOdataTasksKeyData (line 3836) | type ApiVVersionApiVersionOdataTasksKeyData = { type ApiVVersionApiVersionOdataTasksKeyResponses (line 3853) | type ApiVVersionApiVersionOdataTasksKeyResponses = { type ApiVVersionApiVersionOdataTasksKeyResponse (line 3860) | type ApiVVersionApiVersionOdataTasksKeyResponse = ApiVVersionApiVersionO... type ApiVVersionApiVersionOdataTasksKey2Data (line 3862) | type ApiVVersionApiVersionOdataTasksKey2Data = { type ApiVVersionApiVersionOdataTasksKey2Responses (line 3879) | type ApiVVersionApiVersionOdataTasksKey2Responses = { type ApiVVersionApiVersionOdataTasksKey2Response (line 3886) | type ApiVVersionApiVersionOdataTasksKey2Response = ApiVVersionApiVersion... type PostApiV1UserRegisterData (line 3888) | type PostApiV1UserRegisterData = { type PostApiV1UserRegisterErrors (line 3895) | type PostApiV1UserRegisterErrors = { type PostApiV1UserRegisterError (line 3902) | type PostApiV1UserRegisterError = PostApiV1UserRegisterErrors[keyof Post... type PostApiV1UserRegisterResponses (line 3904) | type PostApiV1UserRegisterResponses = { type PostApiV1UserLoginData (line 3911) | type PostApiV1UserLoginData = { type PostApiV1UserLoginResponses (line 3921) | type PostApiV1UserLoginResponses = { type PostApiV1UserLoginResponse (line 3928) | type PostApiV1UserLoginResponse = PostApiV1UserLoginResponses[keyof Post... type PostApiV1UserRefreshData (line 3930) | type PostApiV1UserRefreshData = { type PostApiV1UserRefreshResponses (line 3937) | type PostApiV1UserRefreshResponses = { type PostApiV1UserRefreshResponse (line 3944) | type PostApiV1UserRefreshResponse = PostApiV1UserRefreshResponses[keyof ... type MapIdentityApiApiVVersionApiVersionUserConfirmEmailData (line 3946) | type MapIdentityApiApiVVersionApiVersionUserConfirmEmailData = { type MapIdentityApiApiVVersionApiVersionUserConfirmEmailResponses (line 3957) | type MapIdentityApiApiVVersionApiVersionUserConfirmEmailResponses = { type PostApiV1UserResendConfirmationEmailData (line 3964) | type PostApiV1UserResendConfirmationEmailData = { type PostApiV1UserResendConfirmationEmailResponses (line 3971) | type PostApiV1UserResendConfirmationEmailResponses = { type PostApiV1UserForgotPasswordData (line 3978) | type PostApiV1UserForgotPasswordData = { type PostApiV1UserForgotPasswordErrors (line 3985) | type PostApiV1UserForgotPasswordErrors = { type PostApiV1UserForgotPasswordError (line 3992) | type PostApiV1UserForgotPasswordError = PostApiV1UserForgotPasswordError... type PostApiV1UserForgotPasswordResponses (line 3994) | type PostApiV1UserForgotPasswordResponses = { type PostApiV1UserResetPasswordData (line 4001) | type PostApiV1UserResetPasswordData = { type PostApiV1UserResetPasswordErrors (line 4008) | type PostApiV1UserResetPasswordErrors = { type PostApiV1UserResetPasswordError (line 4015) | type PostApiV1UserResetPasswordError = PostApiV1UserResetPasswordErrors[... type PostApiV1UserResetPasswordResponses (line 4017) | type PostApiV1UserResetPasswordResponses = { type PostApiV1UserManage2FaData (line 4024) | type PostApiV1UserManage2FaData = { type PostApiV1UserManage2FaErrors (line 4031) | type PostApiV1UserManage2FaErrors = { type PostApiV1UserManage2FaError (line 4042) | type PostApiV1UserManage2FaError = PostApiV1UserManage2FaErrors[keyof Po... type PostApiV1UserManage2FaResponses (line 4044) | type PostApiV1UserManage2FaResponses = { type PostApiV1UserManage2FaResponse (line 4051) | type PostApiV1UserManage2FaResponse = PostApiV1UserManage2FaResponses[ke... type GetApiV1UserManageInfoData (line 4053) | type GetApiV1UserManageInfoData = { type GetApiV1UserManageInfoErrors (line 4060) | type GetApiV1UserManageInfoErrors = { type GetApiV1UserManageInfoError (line 4071) | type GetApiV1UserManageInfoError = GetApiV1UserManageInfoErrors[keyof Ge... type GetApiV1UserManageInfoResponses (line 4073) | type GetApiV1UserManageInfoResponses = { type GetApiV1UserManageInfoResponse (line 4080) | type GetApiV1UserManageInfoResponse = GetApiV1UserManageInfoResponses[ke... type PostApiV1UserManageInfoData (line 4082) | type PostApiV1UserManageInfoData = { type PostApiV1UserManageInfoErrors (line 4089) | type PostApiV1UserManageInfoErrors = { type PostApiV1UserManageInfoError (line 4100) | type PostApiV1UserManageInfoError = PostApiV1UserManageInfoErrors[keyof ... type PostApiV1UserManageInfoResponses (line 4102) | type PostApiV1UserManageInfoResponses = { type PostApiV1UserManageInfoResponse (line 4109) | type PostApiV1UserManageInfoResponse = PostApiV1UserManageInfoResponses[... type PostApiV1UserLogoutData (line 4111) | type PostApiV1UserLogoutData = { type PostApiV1UserLogoutResponses (line 4118) | type PostApiV1UserLogoutResponses = { type GetApiV1UserDocumentsSummaryData (line 4125) | type GetApiV1UserDocumentsSummaryData = { type GetApiV1UserDocumentsSummaryResponses (line 4132) | type GetApiV1UserDocumentsSummaryResponses = { type GetApiV1UserDocumentsSummaryResponse (line 4139) | type GetApiV1UserDocumentsSummaryResponse = GetApiV1UserDocumentsSummary... type DeleteApiV1UserData (line 4141) | type DeleteApiV1UserData = { type DeleteApiV1UserResponses (line 4148) | type DeleteApiV1UserResponses = { type GetApiV1UsersMeData (line 4155) | type GetApiV1UsersMeData = { type GetApiV1UsersMeResponses (line 4162) | type GetApiV1UsersMeResponses = { type GetApiV1UsersMeResponse (line 4169) | type GetApiV1UsersMeResponse = GetApiV1UsersMeResponses[keyof GetApiV1Us... type PatchApiV1UsersByIdData (line 4171) | type PatchApiV1UsersByIdData = { type PatchApiV1UsersByIdResponses (line 4180) | type PatchApiV1UsersByIdResponses = { type PatchApiV1UsersByIdResponse (line 4187) | type PatchApiV1UsersByIdResponse = PatchApiV1UsersByIdResponses[keyof Pa... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/export-all/sdk.gen.ts type Options (line 7) | type Options; type Session (line 592) | type Session = { type EventSessionCreated (line 623) | type EventSessionCreated = { type EventSessionUpdated (line 630) | type EventSessionUpdated = { type EventSessionDeleted (line 637) | type EventSessionDeleted = { type EventSessionDiff (line 644) | type EventSessionDiff = { type EventSessionError (line 652) | type EventSessionError = { type EventFileWatcherUpdated (line 660) | type EventFileWatcherUpdated = { type EventVcsBranchUpdated (line 668) | type EventVcsBranchUpdated = { type Pty (line 675) | type Pty = { type EventPtyCreated (line 685) | type EventPtyCreated = { type EventPtyUpdated (line 692) | type EventPtyUpdated = { type EventPtyExited (line 699) | type EventPtyExited = { type EventPtyDeleted (line 707) | type EventPtyDeleted = { type EventServerConnected (line 714) | type EventServerConnected = { type EventGlobalDisposed (line 721) | type EventGlobalDisposed = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type GlobalEvent (line 730) | type GlobalEvent = { type BadRequestError (line 735) | type BadRequestError = { type NotFoundError (line 743) | type NotFoundError = { type KeybindsConfig (line 753) | type KeybindsConfig = { type LogLevel (line 1107) | type LogLevel = 'DEBUG' | 'INFO' | 'WARN' | 'ERROR'; type ServerConfig (line 1112) | type ServerConfig = { type PermissionActionConfig (line 1131) | type PermissionActionConfig = 'ask' | 'allow' | 'deny'; type PermissionObjectConfig (line 1133) | type PermissionObjectConfig = { type PermissionRuleConfig (line 1137) | type PermissionRuleConfig = PermissionActionConfig | PermissionObjectCon... type PermissionConfig (line 1139) | type PermissionConfig = { type AgentConfig (line 1158) | type AgentConfig = { type ProviderConfig (line 1194) | type ProviderConfig = { type McpLocalConfig (line 1279) | type McpLocalConfig = { type McpOAuthConfig (line 1304) | type McpOAuthConfig = { type McpRemoteConfig (line 1319) | type McpRemoteConfig = { type LayoutConfig (line 1351) | type LayoutConfig = 'auto' | 'stretch'; type Config (line 1353) | type Config = { type ToolIds (line 1568) | type ToolIds = Array; type ToolListItem (line 1570) | type ToolListItem = { type ToolList (line 1576) | type ToolList = Array; type Path (line 1578) | type Path = { type VcsInfo (line 1586) | type VcsInfo = { type TextPartInput (line 1590) | type TextPartInput = { type FilePartInput (line 1605) | type FilePartInput = { type AgentPartInput (line 1614) | type AgentPartInput = { type SubtaskPartInput (line 1625) | type SubtaskPartInput = { type Command (line 1634) | type Command = { type Model (line 1645) | type Model = { type Provider (line 1713) | type Provider = { type ProviderAuthMethod (line 1727) | type ProviderAuthMethod = { type ProviderAuthAuthorization (line 1732) | type ProviderAuthAuthorization = { type Symbol (line 1738) | type Symbol = { type FileNode (line 1747) | type FileNode = { type FileContent (line 1755) | type FileContent = { type File (line 1777) | type File = { type Agent (line 1784) | type Agent = { type McpStatusConnected (line 1805) | type McpStatusConnected = { type McpStatusDisabled (line 1809) | type McpStatusDisabled = { type McpStatusFailed (line 1813) | type McpStatusFailed = { type McpStatusNeedsAuth (line 1818) | type McpStatusNeedsAuth = { type McpStatusNeedsClientRegistration (line 1822) | type McpStatusNeedsClientRegistration = { type McpStatus (line 1827) | type McpStatus = McpStatusConnected | McpStatusDisabled | McpStatusFaile... type LspStatus (line 1829) | type LspStatus = { type FormatterStatus (line 1836) | type FormatterStatus = { type OAuth (line 1842) | type OAuth = { type ApiAuth (line 1850) | type ApiAuth = { type WellKnownAuth (line 1855) | type WellKnownAuth = { type Auth (line 1861) | type Auth = OAuth | ApiAuth | WellKnownAuth; type GlobalHealthData (line 1863) | type GlobalHealthData = { type GlobalHealthResponses (line 1870) | type GlobalHealthResponses = { type GlobalHealthResponse (line 1880) | type GlobalHealthResponse = GlobalHealthResponses[keyof GlobalHealthResp... type GlobalEventData (line 1882) | type GlobalEventData = { type GlobalEventResponses (line 1889) | type GlobalEventResponses = { type GlobalEventResponse (line 1896) | type GlobalEventResponse = GlobalEventResponses[keyof GlobalEventRespons... type GlobalDisposeData (line 1898) | type GlobalDisposeData = { type GlobalDisposeResponses (line 1905) | type GlobalDisposeResponses = { type GlobalDisposeResponse (line 1912) | type GlobalDisposeResponse = GlobalDisposeResponses[keyof GlobalDisposeR... type ProjectListData (line 1914) | type ProjectListData = { type ProjectListResponses (line 1923) | type ProjectListResponses = { type ProjectListResponse (line 1930) | type ProjectListResponse = ProjectListResponses[keyof ProjectListRespons... type ProjectCurrentData (line 1932) | type ProjectCurrentData = { type ProjectCurrentResponses (line 1941) | type ProjectCurrentResponses = { type ProjectCurrentResponse (line 1948) | type ProjectCurrentResponse = ProjectCurrentResponses[keyof ProjectCurre... type ProjectUpdateData (line 1950) | type ProjectUpdateData = { type ProjectUpdateErrors (line 1967) | type ProjectUpdateErrors = { type ProjectUpdateError (line 1978) | type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]; type ProjectUpdateResponses (line 1980) | type ProjectUpdateResponses = { type ProjectUpdateResponse (line 1987) | type ProjectUpdateResponse = ProjectUpdateResponses[keyof ProjectUpdateR... type PtyListData (line 1989) | type PtyListData = { type PtyListResponses (line 1998) | type PtyListResponses = { type PtyListResponse (line 2005) | type PtyListResponse = PtyListResponses[keyof PtyListResponses]; type PtyCreateData (line 2007) | type PtyCreateData = { type PtyCreateErrors (line 2024) | type PtyCreateErrors = { type PtyCreateError (line 2031) | type PtyCreateError = PtyCreateErrors[keyof PtyCreateErrors]; type PtyCreateResponses (line 2033) | type PtyCreateResponses = { type PtyCreateResponse (line 2040) | type PtyCreateResponse = PtyCreateResponses[keyof PtyCreateResponses]; type PtyRemoveData (line 2042) | type PtyRemoveData = { type PtyRemoveErrors (line 2053) | type PtyRemoveErrors = { type PtyRemoveError (line 2060) | type PtyRemoveError = PtyRemoveErrors[keyof PtyRemoveErrors]; type PtyRemoveResponses (line 2062) | type PtyRemoveResponses = { type PtyRemoveResponse (line 2069) | type PtyRemoveResponse = PtyRemoveResponses[keyof PtyRemoveResponses]; type PtyGetData (line 2071) | type PtyGetData = { type PtyGetErrors (line 2082) | type PtyGetErrors = { type PtyGetError (line 2089) | type PtyGetError = PtyGetErrors[keyof PtyGetErrors]; type PtyGetResponses (line 2091) | type PtyGetResponses = { type PtyGetResponse (line 2098) | type PtyGetResponse = PtyGetResponses[keyof PtyGetResponses]; type PtyUpdateData (line 2100) | type PtyUpdateData = { type PtyUpdateErrors (line 2117) | type PtyUpdateErrors = { type PtyUpdateError (line 2124) | type PtyUpdateError = PtyUpdateErrors[keyof PtyUpdateErrors]; type PtyUpdateResponses (line 2126) | type PtyUpdateResponses = { type PtyUpdateResponse (line 2133) | type PtyUpdateResponse = PtyUpdateResponses[keyof PtyUpdateResponses]; type PtyConnectData (line 2135) | type PtyConnectData = { type PtyConnectErrors (line 2146) | type PtyConnectErrors = { type PtyConnectError (line 2153) | type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]; type PtyConnectResponses (line 2155) | type PtyConnectResponses = { type PtyConnectResponse (line 2162) | type PtyConnectResponse = PtyConnectResponses[keyof PtyConnectResponses]; type ConfigGetData (line 2164) | type ConfigGetData = { type ConfigGetResponses (line 2173) | type ConfigGetResponses = { type ConfigGetResponse (line 2180) | type ConfigGetResponse = ConfigGetResponses[keyof ConfigGetResponses]; type ConfigUpdateData (line 2182) | type ConfigUpdateData = { type ConfigUpdateErrors (line 2191) | type ConfigUpdateErrors = { type ConfigUpdateError (line 2198) | type ConfigUpdateError = ConfigUpdateErrors[keyof ConfigUpdateErrors]; type ConfigUpdateResponses (line 2200) | type ConfigUpdateResponses = { type ConfigUpdateResponse (line 2207) | type ConfigUpdateResponse = ConfigUpdateResponses[keyof ConfigUpdateResp... type ToolIdsData (line 2209) | type ToolIdsData = { type ToolIdsErrors (line 2218) | type ToolIdsErrors = { type ToolIdsError (line 2225) | type ToolIdsError = ToolIdsErrors[keyof ToolIdsErrors]; type ToolIdsResponses (line 2227) | type ToolIdsResponses = { type ToolIdsResponse (line 2234) | type ToolIdsResponse = ToolIdsResponses[keyof ToolIdsResponses]; type ToolListData (line 2236) | type ToolListData = { type ToolListErrors (line 2247) | type ToolListErrors = { type ToolListError (line 2254) | type ToolListError = ToolListErrors[keyof ToolListErrors]; type ToolListResponses (line 2256) | type ToolListResponses = { type ToolListResponse (line 2263) | type ToolListResponse = ToolListResponses[keyof ToolListResponses]; type InstanceDisposeData (line 2265) | type InstanceDisposeData = { type InstanceDisposeResponses (line 2274) | type InstanceDisposeResponses = { type InstanceDisposeResponse (line 2281) | type InstanceDisposeResponse = InstanceDisposeResponses[keyof InstanceDi... type PathGetData (line 2283) | type PathGetData = { type PathGetResponses (line 2292) | type PathGetResponses = { type PathGetResponse (line 2299) | type PathGetResponse = PathGetResponses[keyof PathGetResponses]; type VcsGetData (line 2301) | type VcsGetData = { type VcsGetResponses (line 2310) | type VcsGetResponses = { type VcsGetResponse (line 2317) | type VcsGetResponse = VcsGetResponses[keyof VcsGetResponses]; type SessionListData (line 2319) | type SessionListData = { type SessionListResponses (line 2328) | type SessionListResponses = { type SessionListResponse (line 2335) | type SessionListResponse = SessionListResponses[keyof SessionListRespons... type SessionCreateData (line 2337) | type SessionCreateData = { type SessionCreateErrors (line 2350) | type SessionCreateErrors = { type SessionCreateError (line 2357) | type SessionCreateError = SessionCreateErrors[keyof SessionCreateErrors]; type SessionCreateResponses (line 2359) | type SessionCreateResponses = { type SessionCreateResponse (line 2366) | type SessionCreateResponse = SessionCreateResponses[keyof SessionCreateR... type SessionStatusData (line 2368) | type SessionStatusData = { type SessionStatusErrors (line 2377) | type SessionStatusErrors = { type SessionStatusError (line 2384) | type SessionStatusError = SessionStatusErrors[keyof SessionStatusErrors]; type SessionStatusResponses (line 2386) | type SessionStatusResponses = { type SessionStatusResponse (line 2395) | type SessionStatusResponse = SessionStatusResponses[keyof SessionStatusR... type SessionDeleteData (line 2397) | type SessionDeleteData = { type SessionDeleteErrors (line 2408) | type SessionDeleteErrors = { type SessionDeleteError (line 2419) | type SessionDeleteError = SessionDeleteErrors[keyof SessionDeleteErrors]; type SessionDeleteResponses (line 2421) | type SessionDeleteResponses = { type SessionDeleteResponse (line 2428) | type SessionDeleteResponse = SessionDeleteResponses[keyof SessionDeleteR... type SessionGetData (line 2430) | type SessionGetData = { type SessionGetErrors (line 2441) | type SessionGetErrors = { type SessionGetError (line 2452) | type SessionGetError = SessionGetErrors[keyof SessionGetErrors]; type SessionGetResponses (line 2454) | type SessionGetResponses = { type SessionGetResponse (line 2461) | type SessionGetResponse = SessionGetResponses[keyof SessionGetResponses]; type SessionUpdateData (line 2463) | type SessionUpdateData = { type SessionUpdateErrors (line 2479) | type SessionUpdateErrors = { type SessionUpdateError (line 2490) | type SessionUpdateError = SessionUpdateErrors[keyof SessionUpdateErrors]; type SessionUpdateResponses (line 2492) | type SessionUpdateResponses = { type SessionUpdateResponse (line 2499) | type SessionUpdateResponse = SessionUpdateResponses[keyof SessionUpdateR... type SessionChildrenData (line 2501) | type SessionChildrenData = { type SessionChildrenErrors (line 2512) | type SessionChildrenErrors = { type SessionChildrenError (line 2523) | type SessionChildrenError = SessionChildrenErrors[keyof SessionChildrenE... type SessionChildrenResponses (line 2525) | type SessionChildrenResponses = { type SessionChildrenResponse (line 2532) | type SessionChildrenResponse = SessionChildrenResponses[keyof SessionChi... type SessionTodoData (line 2534) | type SessionTodoData = { type SessionTodoErrors (line 2548) | type SessionTodoErrors = { type SessionTodoError (line 2559) | type SessionTodoError = SessionTodoErrors[keyof SessionTodoErrors]; type SessionTodoResponses (line 2561) | type SessionTodoResponses = { type SessionTodoResponse (line 2568) | type SessionTodoResponse = SessionTodoResponses[keyof SessionTodoRespons... type SessionInitData (line 2570) | type SessionInitData = { type SessionInitErrors (line 2588) | type SessionInitErrors = { type SessionInitError (line 2599) | type SessionInitError = SessionInitErrors[keyof SessionInitErrors]; type SessionInitResponses (line 2601) | type SessionInitResponses = { type SessionInitResponse (line 2608) | type SessionInitResponse = SessionInitResponses[keyof SessionInitRespons... type SessionForkData (line 2610) | type SessionForkData = { type SessionForkResponses (line 2623) | type SessionForkResponses = { type SessionForkResponse (line 2630) | type SessionForkResponse = SessionForkResponses[keyof SessionForkRespons... type SessionAbortData (line 2632) | type SessionAbortData = { type SessionAbortErrors (line 2643) | type SessionAbortErrors = { type SessionAbortError (line 2654) | type SessionAbortError = SessionAbortErrors[keyof SessionAbortErrors]; type SessionAbortResponses (line 2656) | type SessionAbortResponses = { type SessionAbortResponse (line 2663) | type SessionAbortResponse = SessionAbortResponses[keyof SessionAbortResp... type SessionUnshareData (line 2665) | type SessionUnshareData = { type SessionUnshareErrors (line 2676) | type SessionUnshareErrors = { type SessionUnshareError (line 2687) | type SessionUnshareError = SessionUnshareErrors[keyof SessionUnshareErro... type SessionUnshareResponses (line 2689) | type SessionUnshareResponses = { type SessionUnshareResponse (line 2696) | type SessionUnshareResponse = SessionUnshareResponses[keyof SessionUnsha... type SessionShareData (line 2698) | type SessionShareData = { type SessionShareErrors (line 2709) | type SessionShareErrors = { type SessionShareError (line 2720) | type SessionShareError = SessionShareErrors[keyof SessionShareErrors]; type SessionShareResponses (line 2722) | type SessionShareResponses = { type SessionShareResponse (line 2729) | type SessionShareResponse = SessionShareResponses[keyof SessionShareResp... type SessionDiffData (line 2731) | type SessionDiffData = { type SessionDiffErrors (line 2746) | type SessionDiffErrors = { type SessionDiffError (line 2757) | type SessionDiffError = SessionDiffErrors[keyof SessionDiffErrors]; type SessionDiffResponses (line 2759) | type SessionDiffResponses = { type SessionDiffResponse (line 2766) | type SessionDiffResponse = SessionDiffResponses[keyof SessionDiffRespons... type SessionSummarizeData (line 2768) | type SessionSummarizeData = { type SessionSummarizeErrors (line 2786) | type SessionSummarizeErrors = { type SessionSummarizeError (line 2797) | type SessionSummarizeError = SessionSummarizeErrors[keyof SessionSummari... type SessionSummarizeResponses (line 2799) | type SessionSummarizeResponses = { type SessionSummarizeResponse (line 2806) | type SessionSummarizeResponse = SessionSummarizeResponses[keyof SessionS... type SessionMessagesData (line 2808) | type SessionMessagesData = { type SessionMessagesErrors (line 2823) | type SessionMessagesErrors = { type SessionMessagesError (line 2834) | type SessionMessagesError = SessionMessagesErrors[keyof SessionMessagesE... type SessionMessagesResponses (line 2836) | type SessionMessagesResponses = { type SessionMessagesResponse (line 2846) | type SessionMessagesResponse = SessionMessagesResponses[keyof SessionMes... type SessionPromptData (line 2848) | type SessionPromptData = { type SessionPromptErrors (line 2879) | type SessionPromptErrors = { type SessionPromptError (line 2890) | type SessionPromptError = SessionPromptErrors[keyof SessionPromptErrors]; type SessionPromptResponses (line 2892) | type SessionPromptResponses = { type SessionPromptResponse (line 2902) | type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptR... type SessionMessageData (line 2904) | type SessionMessageData = { type SessionMessageErrors (line 2922) | type SessionMessageErrors = { type SessionMessageError (line 2933) | type SessionMessageError = SessionMessageErrors[keyof SessionMessageErro... type SessionMessageResponses (line 2935) | type SessionMessageResponses = { type SessionMessageResponse (line 2945) | type SessionMessageResponse = SessionMessageResponses[keyof SessionMessa... type PartDeleteData (line 2947) | type PartDeleteData = { type PartDeleteErrors (line 2969) | type PartDeleteErrors = { type PartDeleteError (line 2980) | type PartDeleteError = PartDeleteErrors[keyof PartDeleteErrors]; type PartDeleteResponses (line 2982) | type PartDeleteResponses = { type PartDeleteResponse (line 2989) | type PartDeleteResponse = PartDeleteResponses[keyof PartDeleteResponses]; type PartUpdateData (line 2991) | type PartUpdateData = { type PartUpdateErrors (line 3013) | type PartUpdateErrors = { type PartUpdateError (line 3024) | type PartUpdateError = PartUpdateErrors[keyof PartUpdateErrors]; type PartUpdateResponses (line 3026) | type PartUpdateResponses = { type PartUpdateResponse (line 3033) | type PartUpdateResponse = PartUpdateResponses[keyof PartUpdateResponses]; type SessionPromptAsyncData (line 3035) | type SessionPromptAsyncData = { type SessionPromptAsyncErrors (line 3066) | type SessionPromptAsyncErrors = { type SessionPromptAsyncError (line 3077) | type SessionPromptAsyncError = SessionPromptAsyncErrors[keyof SessionPro... type SessionPromptAsyncResponses (line 3079) | type SessionPromptAsyncResponses = { type SessionPromptAsyncResponse (line 3086) | type SessionPromptAsyncResponse = SessionPromptAsyncResponses[keyof Sess... type SessionCommandData (line 3088) | type SessionCommandData = { type SessionCommandErrors (line 3109) | type SessionCommandErrors = { type SessionCommandError (line 3120) | type SessionCommandError = SessionCommandErrors[keyof SessionCommandErro... type SessionCommandResponses (line 3122) | type SessionCommandResponses = { type SessionCommandResponse (line 3132) | type SessionCommandResponse = SessionCommandResponses[keyof SessionComma... type SessionShellData (line 3134) | type SessionShellData = { type SessionShellErrors (line 3155) | type SessionShellErrors = { type SessionShellError (line 3166) | type SessionShellError = SessionShellErrors[keyof SessionShellErrors]; type SessionShellResponses (line 3168) | type SessionShellResponses = { type SessionShellResponse (line 3175) | type SessionShellResponse = SessionShellResponses[keyof SessionShellResp... type SessionRevertData (line 3177) | type SessionRevertData = { type SessionRevertErrors (line 3191) | type SessionRevertErrors = { type SessionRevertError (line 3202) | type SessionRevertError = SessionRevertErrors[keyof SessionRevertErrors]; type SessionRevertResponses (line 3204) | type SessionRevertResponses = { type SessionRevertResponse (line 3211) | type SessionRevertResponse = SessionRevertResponses[keyof SessionRevertR... type SessionUnrevertData (line 3213) | type SessionUnrevertData = { type SessionUnrevertErrors (line 3224) | type SessionUnrevertErrors = { type SessionUnrevertError (line 3235) | type SessionUnrevertError = SessionUnrevertErrors[keyof SessionUnrevertE... type SessionUnrevertResponses (line 3237) | type SessionUnrevertResponses = { type SessionUnrevertResponse (line 3244) | type SessionUnrevertResponse = SessionUnrevertResponses[keyof SessionUnr... type PermissionRespondData (line 3246) | type PermissionRespondData = { type PermissionRespondErrors (line 3260) | type PermissionRespondErrors = { type PermissionRespondError (line 3271) | type PermissionRespondError = PermissionRespondErrors[keyof PermissionRe... type PermissionRespondResponses (line 3273) | type PermissionRespondResponses = { type PermissionRespondResponse (line 3280) | type PermissionRespondResponse = PermissionRespondResponses[keyof Permis... type PermissionReplyData (line 3282) | type PermissionReplyData = { type PermissionReplyErrors (line 3295) | type PermissionReplyErrors = { type PermissionReplyError (line 3306) | type PermissionReplyError = PermissionReplyErrors[keyof PermissionReplyE... type PermissionReplyResponses (line 3308) | type PermissionReplyResponses = { type PermissionReplyResponse (line 3315) | type PermissionReplyResponse = PermissionReplyResponses[keyof Permission... type PermissionListData (line 3317) | type PermissionListData = { type PermissionListResponses (line 3326) | type PermissionListResponses = { type PermissionListResponse (line 3333) | type PermissionListResponse = PermissionListResponses[keyof PermissionLi... type CommandListData (line 3335) | type CommandListData = { type CommandListResponses (line 3344) | type CommandListResponses = { type CommandListResponse (line 3351) | type CommandListResponse = CommandListResponses[keyof CommandListRespons... type ConfigProvidersData (line 3353) | type ConfigProvidersData = { type ConfigProvidersResponses (line 3362) | type ConfigProvidersResponses = { type ConfigProvidersResponse (line 3374) | type ConfigProvidersResponse = ConfigProvidersResponses[keyof ConfigProv... type ProviderListData (line 3376) | type ProviderListData = { type ProviderListResponses (line 3385) | type ProviderListResponses = { type ProviderListResponse (line 3455) | type ProviderListResponse = ProviderListResponses[keyof ProviderListResp... type ProviderAuthData (line 3457) | type ProviderAuthData = { type ProviderAuthResponses (line 3466) | type ProviderAuthResponses = { type ProviderAuthResponse (line 3475) | type ProviderAuthResponse = ProviderAuthResponses[keyof ProviderAuthResp... type ProviderOauthAuthorizeData (line 3477) | type ProviderOauthAuthorizeData = { type ProviderOauthAuthorizeErrors (line 3496) | type ProviderOauthAuthorizeErrors = { type ProviderOauthAuthorizeError (line 3503) | type ProviderOauthAuthorizeError = ProviderOauthAuthorizeErrors[keyof Pr... type ProviderOauthAuthorizeResponses (line 3505) | type ProviderOauthAuthorizeResponses = { type ProviderOauthAuthorizeResponse (line 3512) | type ProviderOauthAuthorizeResponse = ProviderOauthAuthorizeResponses[ke... type ProviderOauthCallbackData (line 3514) | type ProviderOauthCallbackData = { type ProviderOauthCallbackErrors (line 3537) | type ProviderOauthCallbackErrors = { type ProviderOauthCallbackError (line 3544) | type ProviderOauthCallbackError = ProviderOauthCallbackErrors[keyof Prov... type ProviderOauthCallbackResponses (line 3546) | type ProviderOauthCallbackResponses = { type ProviderOauthCallbackResponse (line 3553) | type ProviderOauthCallbackResponse = ProviderOauthCallbackResponses[keyo... type FindTextData (line 3555) | type FindTextData = { type FindTextResponses (line 3565) | type FindTextResponses = { type FindTextResponse (line 3588) | type FindTextResponse = FindTextResponses[keyof FindTextResponses]; type FindFilesData (line 3590) | type FindFilesData = { type FindFilesResponses (line 3603) | type FindFilesResponses = { type FindFilesResponse (line 3610) | type FindFilesResponse = FindFilesResponses[keyof FindFilesResponses]; type FindSymbolsData (line 3612) | type FindSymbolsData = { type FindSymbolsResponses (line 3622) | type FindSymbolsResponses = { type FindSymbolsResponse (line 3629) | type FindSymbolsResponse = FindSymbolsResponses[keyof FindSymbolsRespons... type FileListData (line 3631) | type FileListData = { type FileListResponses (line 3641) | type FileListResponses = { type FileListResponse (line 3648) | type FileListResponse = FileListResponses[keyof FileListResponses]; type FileReadData (line 3650) | type FileReadData = { type FileReadResponses (line 3660) | type FileReadResponses = { type FileReadResponse (line 3667) | type FileReadResponse = FileReadResponses[keyof FileReadResponses]; type FileStatusData (line 3669) | type FileStatusData = { type FileStatusResponses (line 3678) | type FileStatusResponses = { type FileStatusResponse (line 3685) | type FileStatusResponse = FileStatusResponses[keyof FileStatusResponses]; type AppLogData (line 3687) | type AppLogData = { type AppLogErrors (line 3715) | type AppLogErrors = { type AppLogError (line 3722) | type AppLogError = AppLogErrors[keyof AppLogErrors]; type AppLogResponses (line 3724) | type AppLogResponses = { type AppLogResponse (line 3731) | type AppLogResponse = AppLogResponses[keyof AppLogResponses]; type AppAgentsData (line 3733) | type AppAgentsData = { type AppAgentsResponses (line 3742) | type AppAgentsResponses = { type AppAgentsResponse (line 3749) | type AppAgentsResponse = AppAgentsResponses[keyof AppAgentsResponses]; type McpStatusData (line 3751) | type McpStatusData = { type McpStatusResponses (line 3760) | type McpStatusResponses = { type McpStatusResponse (line 3769) | type McpStatusResponse = McpStatusResponses[keyof McpStatusResponses]; type McpAddData (line 3771) | type McpAddData = { type McpAddErrors (line 3783) | type McpAddErrors = { type McpAddError (line 3790) | type McpAddError = McpAddErrors[keyof McpAddErrors]; type McpAddResponses (line 3792) | type McpAddResponses = { type McpAddResponse (line 3801) | type McpAddResponse = McpAddResponses[keyof McpAddResponses]; type McpAuthRemoveData (line 3803) | type McpAuthRemoveData = { type McpAuthRemoveErrors (line 3814) | type McpAuthRemoveErrors = { type McpAuthRemoveError (line 3821) | type McpAuthRemoveError = McpAuthRemoveErrors[keyof McpAuthRemoveErrors]; type McpAuthRemoveResponses (line 3823) | type McpAuthRemoveResponses = { type McpAuthRemoveResponse (line 3832) | type McpAuthRemoveResponse = McpAuthRemoveResponses[keyof McpAuthRemoveR... type McpAuthStartData (line 3834) | type McpAuthStartData = { type McpAuthStartErrors (line 3845) | type McpAuthStartErrors = { type McpAuthStartError (line 3856) | type McpAuthStartError = McpAuthStartErrors[keyof McpAuthStartErrors]; type McpAuthStartResponses (line 3858) | type McpAuthStartResponses = { type McpAuthStartResponse (line 3870) | type McpAuthStartResponse = McpAuthStartResponses[keyof McpAuthStartResp... type McpAuthCallbackData (line 3872) | type McpAuthCallbackData = { type McpAuthCallbackErrors (line 3888) | type McpAuthCallbackErrors = { type McpAuthCallbackError (line 3899) | type McpAuthCallbackError = McpAuthCallbackErrors[keyof McpAuthCallbackE... type McpAuthCallbackResponses (line 3901) | type McpAuthCallbackResponses = { type McpAuthCallbackResponse (line 3908) | type McpAuthCallbackResponse = McpAuthCallbackResponses[keyof McpAuthCal... type McpAuthAuthenticateData (line 3910) | type McpAuthAuthenticateData = { type McpAuthAuthenticateErrors (line 3921) | type McpAuthAuthenticateErrors = { type McpAuthAuthenticateError (line 3932) | type McpAuthAuthenticateError = McpAuthAuthenticateErrors[keyof McpAuthA... type McpAuthAuthenticateResponses (line 3934) | type McpAuthAuthenticateResponses = { type McpAuthAuthenticateResponse (line 3941) | type McpAuthAuthenticateResponse = McpAuthAuthenticateResponses[keyof Mc... type McpConnectData (line 3943) | type McpConnectData = { type McpConnectResponses (line 3954) | type McpConnectResponses = { type McpConnectResponse (line 3961) | type McpConnectResponse = McpConnectResponses[keyof McpConnectResponses]; type McpDisconnectData (line 3963) | type McpDisconnectData = { type McpDisconnectResponses (line 3974) | type McpDisconnectResponses = { type McpDisconnectResponse (line 3981) | type McpDisconnectResponse = McpDisconnectResponses[keyof McpDisconnectR... type LspStatusData (line 3983) | type LspStatusData = { type LspStatusResponses (line 3992) | type LspStatusResponses = { type LspStatusResponse (line 3999) | type LspStatusResponse = LspStatusResponses[keyof LspStatusResponses]; type FormatterStatusData (line 4001) | type FormatterStatusData = { type FormatterStatusResponses (line 4010) | type FormatterStatusResponses = { type FormatterStatusResponse (line 4017) | type FormatterStatusResponse = FormatterStatusResponses[keyof FormatterS... type TuiAppendPromptData (line 4019) | type TuiAppendPromptData = { type TuiAppendPromptErrors (line 4030) | type TuiAppendPromptErrors = { type TuiAppendPromptError (line 4037) | type TuiAppendPromptError = TuiAppendPromptErrors[keyof TuiAppendPromptE... type TuiAppendPromptResponses (line 4039) | type TuiAppendPromptResponses = { type TuiAppendPromptResponse (line 4046) | type TuiAppendPromptResponse = TuiAppendPromptResponses[keyof TuiAppendP... type TuiOpenHelpData (line 4048) | type TuiOpenHelpData = { type TuiOpenHelpResponses (line 4057) | type TuiOpenHelpResponses = { type TuiOpenHelpResponse (line 4064) | type TuiOpenHelpResponse = TuiOpenHelpResponses[keyof TuiOpenHelpRespons... type TuiOpenSessionsData (line 4066) | type TuiOpenSessionsData = { type TuiOpenSessionsResponses (line 4075) | type TuiOpenSessionsResponses = { type TuiOpenSessionsResponse (line 4082) | type TuiOpenSessionsResponse = TuiOpenSessionsResponses[keyof TuiOpenSes... type TuiOpenThemesData (line 4084) | type TuiOpenThemesData = { type TuiOpenThemesResponses (line 4093) | type TuiOpenThemesResponses = { type TuiOpenThemesResponse (line 4100) | type TuiOpenThemesResponse = TuiOpenThemesResponses[keyof TuiOpenThemesR... type TuiOpenModelsData (line 4102) | type TuiOpenModelsData = { type TuiOpenModelsResponses (line 4111) | type TuiOpenModelsResponses = { type TuiOpenModelsResponse (line 4118) | type TuiOpenModelsResponse = TuiOpenModelsResponses[keyof TuiOpenModelsR... type TuiSubmitPromptData (line 4120) | type TuiSubmitPromptData = { type TuiSubmitPromptResponses (line 4129) | type TuiSubmitPromptResponses = { type TuiSubmitPromptResponse (line 4136) | type TuiSubmitPromptResponse = TuiSubmitPromptResponses[keyof TuiSubmitP... type TuiClearPromptData (line 4138) | type TuiClearPromptData = { type TuiClearPromptResponses (line 4147) | type TuiClearPromptResponses = { type TuiClearPromptResponse (line 4154) | type TuiClearPromptResponse = TuiClearPromptResponses[keyof TuiClearProm... type TuiExecuteCommandData (line 4156) | type TuiExecuteCommandData = { type TuiExecuteCommandErrors (line 4167) | type TuiExecuteCommandErrors = { type TuiExecuteCommandError (line 4174) | type TuiExecuteCommandError = TuiExecuteCommandErrors[keyof TuiExecuteCo... type TuiExecuteCommandResponses (line 4176) | type TuiExecuteCommandResponses = { type TuiExecuteCommandResponse (line 4183) | type TuiExecuteCommandResponse = TuiExecuteCommandResponses[keyof TuiExe... type TuiShowToastData (line 4185) | type TuiShowToastData = { type TuiShowToastResponses (line 4202) | type TuiShowToastResponses = { type TuiShowToastResponse (line 4209) | type TuiShowToastResponse = TuiShowToastResponses[keyof TuiShowToastResp... type TuiPublishData (line 4211) | type TuiPublishData = { type TuiPublishErrors (line 4220) | type TuiPublishErrors = { type TuiPublishError (line 4227) | type TuiPublishError = TuiPublishErrors[keyof TuiPublishErrors]; type TuiPublishResponses (line 4229) | type TuiPublishResponses = { type TuiPublishResponse (line 4236) | type TuiPublishResponse = TuiPublishResponses[keyof TuiPublishResponses]; type TuiControlNextData (line 4238) | type TuiControlNextData = { type TuiControlNextResponses (line 4247) | type TuiControlNextResponses = { type TuiControlNextResponse (line 4257) | type TuiControlNextResponse = TuiControlNextResponses[keyof TuiControlNe... type TuiControlResponseData (line 4259) | type TuiControlResponseData = { type TuiControlResponseResponses (line 4268) | type TuiControlResponseResponses = { type TuiControlResponseResponse (line 4275) | type TuiControlResponseResponse = TuiControlResponseResponses[keyof TuiC... type AuthSetData (line 4277) | type AuthSetData = { type AuthSetErrors (line 4288) | type AuthSetErrors = { type AuthSetError (line 4295) | type AuthSetError = AuthSetErrors[keyof AuthSetErrors]; type AuthSetResponses (line 4297) | type AuthSetResponses = { type AuthSetResponse (line 4304) | type AuthSetResponse = AuthSetResponses[keyof AuthSetResponses]; type EventSubscribeData (line 4306) | type EventSubscribeData = { type EventSubscribeResponses (line 4315) | type EventSubscribeResponses = { type EventSubscribeResponse (line 4322) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/flat/sdk.gen.ts type Options (line 7) | type Options; type Session (line 592) | type Session = { type EventSessionCreated (line 623) | type EventSessionCreated = { type EventSessionUpdated (line 630) | type EventSessionUpdated = { type EventSessionDeleted (line 637) | type EventSessionDeleted = { type EventSessionDiff (line 644) | type EventSessionDiff = { type EventSessionError (line 652) | type EventSessionError = { type EventFileWatcherUpdated (line 660) | type EventFileWatcherUpdated = { type EventVcsBranchUpdated (line 668) | type EventVcsBranchUpdated = { type Pty (line 675) | type Pty = { type EventPtyCreated (line 685) | type EventPtyCreated = { type EventPtyUpdated (line 692) | type EventPtyUpdated = { type EventPtyExited (line 699) | type EventPtyExited = { type EventPtyDeleted (line 707) | type EventPtyDeleted = { type EventServerConnected (line 714) | type EventServerConnected = { type EventGlobalDisposed (line 721) | type EventGlobalDisposed = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type GlobalEvent (line 730) | type GlobalEvent = { type BadRequestError (line 735) | type BadRequestError = { type NotFoundError (line 743) | type NotFoundError = { type KeybindsConfig (line 753) | type KeybindsConfig = { type LogLevel (line 1107) | type LogLevel = 'DEBUG' | 'INFO' | 'WARN' | 'ERROR'; type ServerConfig (line 1112) | type ServerConfig = { type PermissionActionConfig (line 1131) | type PermissionActionConfig = 'ask' | 'allow' | 'deny'; type PermissionObjectConfig (line 1133) | type PermissionObjectConfig = { type PermissionRuleConfig (line 1137) | type PermissionRuleConfig = PermissionActionConfig | PermissionObjectCon... type PermissionConfig (line 1139) | type PermissionConfig = { type AgentConfig (line 1158) | type AgentConfig = { type ProviderConfig (line 1194) | type ProviderConfig = { type McpLocalConfig (line 1279) | type McpLocalConfig = { type McpOAuthConfig (line 1304) | type McpOAuthConfig = { type McpRemoteConfig (line 1319) | type McpRemoteConfig = { type LayoutConfig (line 1351) | type LayoutConfig = 'auto' | 'stretch'; type Config (line 1353) | type Config = { type ToolIds (line 1568) | type ToolIds = Array; type ToolListItem (line 1570) | type ToolListItem = { type ToolList (line 1576) | type ToolList = Array; type Path (line 1578) | type Path = { type VcsInfo (line 1586) | type VcsInfo = { type TextPartInput (line 1590) | type TextPartInput = { type FilePartInput (line 1605) | type FilePartInput = { type AgentPartInput (line 1614) | type AgentPartInput = { type SubtaskPartInput (line 1625) | type SubtaskPartInput = { type Command (line 1634) | type Command = { type Model (line 1645) | type Model = { type Provider (line 1713) | type Provider = { type ProviderAuthMethod (line 1727) | type ProviderAuthMethod = { type ProviderAuthAuthorization (line 1732) | type ProviderAuthAuthorization = { type Symbol (line 1738) | type Symbol = { type FileNode (line 1747) | type FileNode = { type FileContent (line 1755) | type FileContent = { type File (line 1777) | type File = { type Agent (line 1784) | type Agent = { type McpStatusConnected (line 1805) | type McpStatusConnected = { type McpStatusDisabled (line 1809) | type McpStatusDisabled = { type McpStatusFailed (line 1813) | type McpStatusFailed = { type McpStatusNeedsAuth (line 1818) | type McpStatusNeedsAuth = { type McpStatusNeedsClientRegistration (line 1822) | type McpStatusNeedsClientRegistration = { type McpStatus (line 1827) | type McpStatus = McpStatusConnected | McpStatusDisabled | McpStatusFaile... type LspStatus (line 1829) | type LspStatus = { type FormatterStatus (line 1836) | type FormatterStatus = { type OAuth (line 1842) | type OAuth = { type ApiAuth (line 1850) | type ApiAuth = { type WellKnownAuth (line 1855) | type WellKnownAuth = { type Auth (line 1861) | type Auth = OAuth | ApiAuth | WellKnownAuth; type GlobalHealthData (line 1863) | type GlobalHealthData = { type GlobalHealthResponses (line 1870) | type GlobalHealthResponses = { type GlobalHealthResponse (line 1880) | type GlobalHealthResponse = GlobalHealthResponses[keyof GlobalHealthResp... type GlobalEventData (line 1882) | type GlobalEventData = { type GlobalEventResponses (line 1889) | type GlobalEventResponses = { type GlobalEventResponse (line 1896) | type GlobalEventResponse = GlobalEventResponses[keyof GlobalEventRespons... type GlobalDisposeData (line 1898) | type GlobalDisposeData = { type GlobalDisposeResponses (line 1905) | type GlobalDisposeResponses = { type GlobalDisposeResponse (line 1912) | type GlobalDisposeResponse = GlobalDisposeResponses[keyof GlobalDisposeR... type ProjectListData (line 1914) | type ProjectListData = { type ProjectListResponses (line 1923) | type ProjectListResponses = { type ProjectListResponse (line 1930) | type ProjectListResponse = ProjectListResponses[keyof ProjectListRespons... type ProjectCurrentData (line 1932) | type ProjectCurrentData = { type ProjectCurrentResponses (line 1941) | type ProjectCurrentResponses = { type ProjectCurrentResponse (line 1948) | type ProjectCurrentResponse = ProjectCurrentResponses[keyof ProjectCurre... type ProjectUpdateData (line 1950) | type ProjectUpdateData = { type ProjectUpdateErrors (line 1967) | type ProjectUpdateErrors = { type ProjectUpdateError (line 1978) | type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]; type ProjectUpdateResponses (line 1980) | type ProjectUpdateResponses = { type ProjectUpdateResponse (line 1987) | type ProjectUpdateResponse = ProjectUpdateResponses[keyof ProjectUpdateR... type PtyListData (line 1989) | type PtyListData = { type PtyListResponses (line 1998) | type PtyListResponses = { type PtyListResponse (line 2005) | type PtyListResponse = PtyListResponses[keyof PtyListResponses]; type PtyCreateData (line 2007) | type PtyCreateData = { type PtyCreateErrors (line 2024) | type PtyCreateErrors = { type PtyCreateError (line 2031) | type PtyCreateError = PtyCreateErrors[keyof PtyCreateErrors]; type PtyCreateResponses (line 2033) | type PtyCreateResponses = { type PtyCreateResponse (line 2040) | type PtyCreateResponse = PtyCreateResponses[keyof PtyCreateResponses]; type PtyRemoveData (line 2042) | type PtyRemoveData = { type PtyRemoveErrors (line 2053) | type PtyRemoveErrors = { type PtyRemoveError (line 2060) | type PtyRemoveError = PtyRemoveErrors[keyof PtyRemoveErrors]; type PtyRemoveResponses (line 2062) | type PtyRemoveResponses = { type PtyRemoveResponse (line 2069) | type PtyRemoveResponse = PtyRemoveResponses[keyof PtyRemoveResponses]; type PtyGetData (line 2071) | type PtyGetData = { type PtyGetErrors (line 2082) | type PtyGetErrors = { type PtyGetError (line 2089) | type PtyGetError = PtyGetErrors[keyof PtyGetErrors]; type PtyGetResponses (line 2091) | type PtyGetResponses = { type PtyGetResponse (line 2098) | type PtyGetResponse = PtyGetResponses[keyof PtyGetResponses]; type PtyUpdateData (line 2100) | type PtyUpdateData = { type PtyUpdateErrors (line 2117) | type PtyUpdateErrors = { type PtyUpdateError (line 2124) | type PtyUpdateError = PtyUpdateErrors[keyof PtyUpdateErrors]; type PtyUpdateResponses (line 2126) | type PtyUpdateResponses = { type PtyUpdateResponse (line 2133) | type PtyUpdateResponse = PtyUpdateResponses[keyof PtyUpdateResponses]; type PtyConnectData (line 2135) | type PtyConnectData = { type PtyConnectErrors (line 2146) | type PtyConnectErrors = { type PtyConnectError (line 2153) | type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]; type PtyConnectResponses (line 2155) | type PtyConnectResponses = { type PtyConnectResponse (line 2162) | type PtyConnectResponse = PtyConnectResponses[keyof PtyConnectResponses]; type ConfigGetData (line 2164) | type ConfigGetData = { type ConfigGetResponses (line 2173) | type ConfigGetResponses = { type ConfigGetResponse (line 2180) | type ConfigGetResponse = ConfigGetResponses[keyof ConfigGetResponses]; type ConfigUpdateData (line 2182) | type ConfigUpdateData = { type ConfigUpdateErrors (line 2191) | type ConfigUpdateErrors = { type ConfigUpdateError (line 2198) | type ConfigUpdateError = ConfigUpdateErrors[keyof ConfigUpdateErrors]; type ConfigUpdateResponses (line 2200) | type ConfigUpdateResponses = { type ConfigUpdateResponse (line 2207) | type ConfigUpdateResponse = ConfigUpdateResponses[keyof ConfigUpdateResp... type ToolIdsData (line 2209) | type ToolIdsData = { type ToolIdsErrors (line 2218) | type ToolIdsErrors = { type ToolIdsError (line 2225) | type ToolIdsError = ToolIdsErrors[keyof ToolIdsErrors]; type ToolIdsResponses (line 2227) | type ToolIdsResponses = { type ToolIdsResponse (line 2234) | type ToolIdsResponse = ToolIdsResponses[keyof ToolIdsResponses]; type ToolListData (line 2236) | type ToolListData = { type ToolListErrors (line 2247) | type ToolListErrors = { type ToolListError (line 2254) | type ToolListError = ToolListErrors[keyof ToolListErrors]; type ToolListResponses (line 2256) | type ToolListResponses = { type ToolListResponse (line 2263) | type ToolListResponse = ToolListResponses[keyof ToolListResponses]; type InstanceDisposeData (line 2265) | type InstanceDisposeData = { type InstanceDisposeResponses (line 2274) | type InstanceDisposeResponses = { type InstanceDisposeResponse (line 2281) | type InstanceDisposeResponse = InstanceDisposeResponses[keyof InstanceDi... type PathGetData (line 2283) | type PathGetData = { type PathGetResponses (line 2292) | type PathGetResponses = { type PathGetResponse (line 2299) | type PathGetResponse = PathGetResponses[keyof PathGetResponses]; type VcsGetData (line 2301) | type VcsGetData = { type VcsGetResponses (line 2310) | type VcsGetResponses = { type VcsGetResponse (line 2317) | type VcsGetResponse = VcsGetResponses[keyof VcsGetResponses]; type SessionListData (line 2319) | type SessionListData = { type SessionListResponses (line 2328) | type SessionListResponses = { type SessionListResponse (line 2335) | type SessionListResponse = SessionListResponses[keyof SessionListRespons... type SessionCreateData (line 2337) | type SessionCreateData = { type SessionCreateErrors (line 2350) | type SessionCreateErrors = { type SessionCreateError (line 2357) | type SessionCreateError = SessionCreateErrors[keyof SessionCreateErrors]; type SessionCreateResponses (line 2359) | type SessionCreateResponses = { type SessionCreateResponse (line 2366) | type SessionCreateResponse = SessionCreateResponses[keyof SessionCreateR... type SessionStatusData (line 2368) | type SessionStatusData = { type SessionStatusErrors (line 2377) | type SessionStatusErrors = { type SessionStatusError (line 2384) | type SessionStatusError = SessionStatusErrors[keyof SessionStatusErrors]; type SessionStatusResponses (line 2386) | type SessionStatusResponses = { type SessionStatusResponse (line 2395) | type SessionStatusResponse = SessionStatusResponses[keyof SessionStatusR... type SessionDeleteData (line 2397) | type SessionDeleteData = { type SessionDeleteErrors (line 2408) | type SessionDeleteErrors = { type SessionDeleteError (line 2419) | type SessionDeleteError = SessionDeleteErrors[keyof SessionDeleteErrors]; type SessionDeleteResponses (line 2421) | type SessionDeleteResponses = { type SessionDeleteResponse (line 2428) | type SessionDeleteResponse = SessionDeleteResponses[keyof SessionDeleteR... type SessionGetData (line 2430) | type SessionGetData = { type SessionGetErrors (line 2441) | type SessionGetErrors = { type SessionGetError (line 2452) | type SessionGetError = SessionGetErrors[keyof SessionGetErrors]; type SessionGetResponses (line 2454) | type SessionGetResponses = { type SessionGetResponse (line 2461) | type SessionGetResponse = SessionGetResponses[keyof SessionGetResponses]; type SessionUpdateData (line 2463) | type SessionUpdateData = { type SessionUpdateErrors (line 2479) | type SessionUpdateErrors = { type SessionUpdateError (line 2490) | type SessionUpdateError = SessionUpdateErrors[keyof SessionUpdateErrors]; type SessionUpdateResponses (line 2492) | type SessionUpdateResponses = { type SessionUpdateResponse (line 2499) | type SessionUpdateResponse = SessionUpdateResponses[keyof SessionUpdateR... type SessionChildrenData (line 2501) | type SessionChildrenData = { type SessionChildrenErrors (line 2512) | type SessionChildrenErrors = { type SessionChildrenError (line 2523) | type SessionChildrenError = SessionChildrenErrors[keyof SessionChildrenE... type SessionChildrenResponses (line 2525) | type SessionChildrenResponses = { type SessionChildrenResponse (line 2532) | type SessionChildrenResponse = SessionChildrenResponses[keyof SessionChi... type SessionTodoData (line 2534) | type SessionTodoData = { type SessionTodoErrors (line 2548) | type SessionTodoErrors = { type SessionTodoError (line 2559) | type SessionTodoError = SessionTodoErrors[keyof SessionTodoErrors]; type SessionTodoResponses (line 2561) | type SessionTodoResponses = { type SessionTodoResponse (line 2568) | type SessionTodoResponse = SessionTodoResponses[keyof SessionTodoRespons... type SessionInitData (line 2570) | type SessionInitData = { type SessionInitErrors (line 2588) | type SessionInitErrors = { type SessionInitError (line 2599) | type SessionInitError = SessionInitErrors[keyof SessionInitErrors]; type SessionInitResponses (line 2601) | type SessionInitResponses = { type SessionInitResponse (line 2608) | type SessionInitResponse = SessionInitResponses[keyof SessionInitRespons... type SessionForkData (line 2610) | type SessionForkData = { type SessionForkResponses (line 2623) | type SessionForkResponses = { type SessionForkResponse (line 2630) | type SessionForkResponse = SessionForkResponses[keyof SessionForkRespons... type SessionAbortData (line 2632) | type SessionAbortData = { type SessionAbortErrors (line 2643) | type SessionAbortErrors = { type SessionAbortError (line 2654) | type SessionAbortError = SessionAbortErrors[keyof SessionAbortErrors]; type SessionAbortResponses (line 2656) | type SessionAbortResponses = { type SessionAbortResponse (line 2663) | type SessionAbortResponse = SessionAbortResponses[keyof SessionAbortResp... type SessionUnshareData (line 2665) | type SessionUnshareData = { type SessionUnshareErrors (line 2676) | type SessionUnshareErrors = { type SessionUnshareError (line 2687) | type SessionUnshareError = SessionUnshareErrors[keyof SessionUnshareErro... type SessionUnshareResponses (line 2689) | type SessionUnshareResponses = { type SessionUnshareResponse (line 2696) | type SessionUnshareResponse = SessionUnshareResponses[keyof SessionUnsha... type SessionShareData (line 2698) | type SessionShareData = { type SessionShareErrors (line 2709) | type SessionShareErrors = { type SessionShareError (line 2720) | type SessionShareError = SessionShareErrors[keyof SessionShareErrors]; type SessionShareResponses (line 2722) | type SessionShareResponses = { type SessionShareResponse (line 2729) | type SessionShareResponse = SessionShareResponses[keyof SessionShareResp... type SessionDiffData (line 2731) | type SessionDiffData = { type SessionDiffErrors (line 2746) | type SessionDiffErrors = { type SessionDiffError (line 2757) | type SessionDiffError = SessionDiffErrors[keyof SessionDiffErrors]; type SessionDiffResponses (line 2759) | type SessionDiffResponses = { type SessionDiffResponse (line 2766) | type SessionDiffResponse = SessionDiffResponses[keyof SessionDiffRespons... type SessionSummarizeData (line 2768) | type SessionSummarizeData = { type SessionSummarizeErrors (line 2786) | type SessionSummarizeErrors = { type SessionSummarizeError (line 2797) | type SessionSummarizeError = SessionSummarizeErrors[keyof SessionSummari... type SessionSummarizeResponses (line 2799) | type SessionSummarizeResponses = { type SessionSummarizeResponse (line 2806) | type SessionSummarizeResponse = SessionSummarizeResponses[keyof SessionS... type SessionMessagesData (line 2808) | type SessionMessagesData = { type SessionMessagesErrors (line 2823) | type SessionMessagesErrors = { type SessionMessagesError (line 2834) | type SessionMessagesError = SessionMessagesErrors[keyof SessionMessagesE... type SessionMessagesResponses (line 2836) | type SessionMessagesResponses = { type SessionMessagesResponse (line 2846) | type SessionMessagesResponse = SessionMessagesResponses[keyof SessionMes... type SessionPromptData (line 2848) | type SessionPromptData = { type SessionPromptErrors (line 2879) | type SessionPromptErrors = { type SessionPromptError (line 2890) | type SessionPromptError = SessionPromptErrors[keyof SessionPromptErrors]; type SessionPromptResponses (line 2892) | type SessionPromptResponses = { type SessionPromptResponse (line 2902) | type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptR... type SessionMessageData (line 2904) | type SessionMessageData = { type SessionMessageErrors (line 2922) | type SessionMessageErrors = { type SessionMessageError (line 2933) | type SessionMessageError = SessionMessageErrors[keyof SessionMessageErro... type SessionMessageResponses (line 2935) | type SessionMessageResponses = { type SessionMessageResponse (line 2945) | type SessionMessageResponse = SessionMessageResponses[keyof SessionMessa... type PartDeleteData (line 2947) | type PartDeleteData = { type PartDeleteErrors (line 2969) | type PartDeleteErrors = { type PartDeleteError (line 2980) | type PartDeleteError = PartDeleteErrors[keyof PartDeleteErrors]; type PartDeleteResponses (line 2982) | type PartDeleteResponses = { type PartDeleteResponse (line 2989) | type PartDeleteResponse = PartDeleteResponses[keyof PartDeleteResponses]; type PartUpdateData (line 2991) | type PartUpdateData = { type PartUpdateErrors (line 3013) | type PartUpdateErrors = { type PartUpdateError (line 3024) | type PartUpdateError = PartUpdateErrors[keyof PartUpdateErrors]; type PartUpdateResponses (line 3026) | type PartUpdateResponses = { type PartUpdateResponse (line 3033) | type PartUpdateResponse = PartUpdateResponses[keyof PartUpdateResponses]; type SessionPromptAsyncData (line 3035) | type SessionPromptAsyncData = { type SessionPromptAsyncErrors (line 3066) | type SessionPromptAsyncErrors = { type SessionPromptAsyncError (line 3077) | type SessionPromptAsyncError = SessionPromptAsyncErrors[keyof SessionPro... type SessionPromptAsyncResponses (line 3079) | type SessionPromptAsyncResponses = { type SessionPromptAsyncResponse (line 3086) | type SessionPromptAsyncResponse = SessionPromptAsyncResponses[keyof Sess... type SessionCommandData (line 3088) | type SessionCommandData = { type SessionCommandErrors (line 3109) | type SessionCommandErrors = { type SessionCommandError (line 3120) | type SessionCommandError = SessionCommandErrors[keyof SessionCommandErro... type SessionCommandResponses (line 3122) | type SessionCommandResponses = { type SessionCommandResponse (line 3132) | type SessionCommandResponse = SessionCommandResponses[keyof SessionComma... type SessionShellData (line 3134) | type SessionShellData = { type SessionShellErrors (line 3155) | type SessionShellErrors = { type SessionShellError (line 3166) | type SessionShellError = SessionShellErrors[keyof SessionShellErrors]; type SessionShellResponses (line 3168) | type SessionShellResponses = { type SessionShellResponse (line 3175) | type SessionShellResponse = SessionShellResponses[keyof SessionShellResp... type SessionRevertData (line 3177) | type SessionRevertData = { type SessionRevertErrors (line 3191) | type SessionRevertErrors = { type SessionRevertError (line 3202) | type SessionRevertError = SessionRevertErrors[keyof SessionRevertErrors]; type SessionRevertResponses (line 3204) | type SessionRevertResponses = { type SessionRevertResponse (line 3211) | type SessionRevertResponse = SessionRevertResponses[keyof SessionRevertR... type SessionUnrevertData (line 3213) | type SessionUnrevertData = { type SessionUnrevertErrors (line 3224) | type SessionUnrevertErrors = { type SessionUnrevertError (line 3235) | type SessionUnrevertError = SessionUnrevertErrors[keyof SessionUnrevertE... type SessionUnrevertResponses (line 3237) | type SessionUnrevertResponses = { type SessionUnrevertResponse (line 3244) | type SessionUnrevertResponse = SessionUnrevertResponses[keyof SessionUnr... type PermissionRespondData (line 3246) | type PermissionRespondData = { type PermissionRespondErrors (line 3260) | type PermissionRespondErrors = { type PermissionRespondError (line 3271) | type PermissionRespondError = PermissionRespondErrors[keyof PermissionRe... type PermissionRespondResponses (line 3273) | type PermissionRespondResponses = { type PermissionRespondResponse (line 3280) | type PermissionRespondResponse = PermissionRespondResponses[keyof Permis... type PermissionReplyData (line 3282) | type PermissionReplyData = { type PermissionReplyErrors (line 3295) | type PermissionReplyErrors = { type PermissionReplyError (line 3306) | type PermissionReplyError = PermissionReplyErrors[keyof PermissionReplyE... type PermissionReplyResponses (line 3308) | type PermissionReplyResponses = { type PermissionReplyResponse (line 3315) | type PermissionReplyResponse = PermissionReplyResponses[keyof Permission... type PermissionListData (line 3317) | type PermissionListData = { type PermissionListResponses (line 3326) | type PermissionListResponses = { type PermissionListResponse (line 3333) | type PermissionListResponse = PermissionListResponses[keyof PermissionLi... type CommandListData (line 3335) | type CommandListData = { type CommandListResponses (line 3344) | type CommandListResponses = { type CommandListResponse (line 3351) | type CommandListResponse = CommandListResponses[keyof CommandListRespons... type ConfigProvidersData (line 3353) | type ConfigProvidersData = { type ConfigProvidersResponses (line 3362) | type ConfigProvidersResponses = { type ConfigProvidersResponse (line 3374) | type ConfigProvidersResponse = ConfigProvidersResponses[keyof ConfigProv... type ProviderListData (line 3376) | type ProviderListData = { type ProviderListResponses (line 3385) | type ProviderListResponses = { type ProviderListResponse (line 3455) | type ProviderListResponse = ProviderListResponses[keyof ProviderListResp... type ProviderAuthData (line 3457) | type ProviderAuthData = { type ProviderAuthResponses (line 3466) | type ProviderAuthResponses = { type ProviderAuthResponse (line 3475) | type ProviderAuthResponse = ProviderAuthResponses[keyof ProviderAuthResp... type ProviderOauthAuthorizeData (line 3477) | type ProviderOauthAuthorizeData = { type ProviderOauthAuthorizeErrors (line 3496) | type ProviderOauthAuthorizeErrors = { type ProviderOauthAuthorizeError (line 3503) | type ProviderOauthAuthorizeError = ProviderOauthAuthorizeErrors[keyof Pr... type ProviderOauthAuthorizeResponses (line 3505) | type ProviderOauthAuthorizeResponses = { type ProviderOauthAuthorizeResponse (line 3512) | type ProviderOauthAuthorizeResponse = ProviderOauthAuthorizeResponses[ke... type ProviderOauthCallbackData (line 3514) | type ProviderOauthCallbackData = { type ProviderOauthCallbackErrors (line 3537) | type ProviderOauthCallbackErrors = { type ProviderOauthCallbackError (line 3544) | type ProviderOauthCallbackError = ProviderOauthCallbackErrors[keyof Prov... type ProviderOauthCallbackResponses (line 3546) | type ProviderOauthCallbackResponses = { type ProviderOauthCallbackResponse (line 3553) | type ProviderOauthCallbackResponse = ProviderOauthCallbackResponses[keyo... type FindTextData (line 3555) | type FindTextData = { type FindTextResponses (line 3565) | type FindTextResponses = { type FindTextResponse (line 3588) | type FindTextResponse = FindTextResponses[keyof FindTextResponses]; type FindFilesData (line 3590) | type FindFilesData = { type FindFilesResponses (line 3603) | type FindFilesResponses = { type FindFilesResponse (line 3610) | type FindFilesResponse = FindFilesResponses[keyof FindFilesResponses]; type FindSymbolsData (line 3612) | type FindSymbolsData = { type FindSymbolsResponses (line 3622) | type FindSymbolsResponses = { type FindSymbolsResponse (line 3629) | type FindSymbolsResponse = FindSymbolsResponses[keyof FindSymbolsRespons... type FileListData (line 3631) | type FileListData = { type FileListResponses (line 3641) | type FileListResponses = { type FileListResponse (line 3648) | type FileListResponse = FileListResponses[keyof FileListResponses]; type FileReadData (line 3650) | type FileReadData = { type FileReadResponses (line 3660) | type FileReadResponses = { type FileReadResponse (line 3667) | type FileReadResponse = FileReadResponses[keyof FileReadResponses]; type FileStatusData (line 3669) | type FileStatusData = { type FileStatusResponses (line 3678) | type FileStatusResponses = { type FileStatusResponse (line 3685) | type FileStatusResponse = FileStatusResponses[keyof FileStatusResponses]; type AppLogData (line 3687) | type AppLogData = { type AppLogErrors (line 3715) | type AppLogErrors = { type AppLogError (line 3722) | type AppLogError = AppLogErrors[keyof AppLogErrors]; type AppLogResponses (line 3724) | type AppLogResponses = { type AppLogResponse (line 3731) | type AppLogResponse = AppLogResponses[keyof AppLogResponses]; type AppAgentsData (line 3733) | type AppAgentsData = { type AppAgentsResponses (line 3742) | type AppAgentsResponses = { type AppAgentsResponse (line 3749) | type AppAgentsResponse = AppAgentsResponses[keyof AppAgentsResponses]; type McpStatusData (line 3751) | type McpStatusData = { type McpStatusResponses (line 3760) | type McpStatusResponses = { type McpStatusResponse (line 3769) | type McpStatusResponse = McpStatusResponses[keyof McpStatusResponses]; type McpAddData (line 3771) | type McpAddData = { type McpAddErrors (line 3783) | type McpAddErrors = { type McpAddError (line 3790) | type McpAddError = McpAddErrors[keyof McpAddErrors]; type McpAddResponses (line 3792) | type McpAddResponses = { type McpAddResponse (line 3801) | type McpAddResponse = McpAddResponses[keyof McpAddResponses]; type McpAuthRemoveData (line 3803) | type McpAuthRemoveData = { type McpAuthRemoveErrors (line 3814) | type McpAuthRemoveErrors = { type McpAuthRemoveError (line 3821) | type McpAuthRemoveError = McpAuthRemoveErrors[keyof McpAuthRemoveErrors]; type McpAuthRemoveResponses (line 3823) | type McpAuthRemoveResponses = { type McpAuthRemoveResponse (line 3832) | type McpAuthRemoveResponse = McpAuthRemoveResponses[keyof McpAuthRemoveR... type McpAuthStartData (line 3834) | type McpAuthStartData = { type McpAuthStartErrors (line 3845) | type McpAuthStartErrors = { type McpAuthStartError (line 3856) | type McpAuthStartError = McpAuthStartErrors[keyof McpAuthStartErrors]; type McpAuthStartResponses (line 3858) | type McpAuthStartResponses = { type McpAuthStartResponse (line 3870) | type McpAuthStartResponse = McpAuthStartResponses[keyof McpAuthStartResp... type McpAuthCallbackData (line 3872) | type McpAuthCallbackData = { type McpAuthCallbackErrors (line 3888) | type McpAuthCallbackErrors = { type McpAuthCallbackError (line 3899) | type McpAuthCallbackError = McpAuthCallbackErrors[keyof McpAuthCallbackE... type McpAuthCallbackResponses (line 3901) | type McpAuthCallbackResponses = { type McpAuthCallbackResponse (line 3908) | type McpAuthCallbackResponse = McpAuthCallbackResponses[keyof McpAuthCal... type McpAuthAuthenticateData (line 3910) | type McpAuthAuthenticateData = { type McpAuthAuthenticateErrors (line 3921) | type McpAuthAuthenticateErrors = { type McpAuthAuthenticateError (line 3932) | type McpAuthAuthenticateError = McpAuthAuthenticateErrors[keyof McpAuthA... type McpAuthAuthenticateResponses (line 3934) | type McpAuthAuthenticateResponses = { type McpAuthAuthenticateResponse (line 3941) | type McpAuthAuthenticateResponse = McpAuthAuthenticateResponses[keyof Mc... type McpConnectData (line 3943) | type McpConnectData = { type McpConnectResponses (line 3954) | type McpConnectResponses = { type McpConnectResponse (line 3961) | type McpConnectResponse = McpConnectResponses[keyof McpConnectResponses]; type McpDisconnectData (line 3963) | type McpDisconnectData = { type McpDisconnectResponses (line 3974) | type McpDisconnectResponses = { type McpDisconnectResponse (line 3981) | type McpDisconnectResponse = McpDisconnectResponses[keyof McpDisconnectR... type LspStatusData (line 3983) | type LspStatusData = { type LspStatusResponses (line 3992) | type LspStatusResponses = { type LspStatusResponse (line 3999) | type LspStatusResponse = LspStatusResponses[keyof LspStatusResponses]; type FormatterStatusData (line 4001) | type FormatterStatusData = { type FormatterStatusResponses (line 4010) | type FormatterStatusResponses = { type FormatterStatusResponse (line 4017) | type FormatterStatusResponse = FormatterStatusResponses[keyof FormatterS... type TuiAppendPromptData (line 4019) | type TuiAppendPromptData = { type TuiAppendPromptErrors (line 4030) | type TuiAppendPromptErrors = { type TuiAppendPromptError (line 4037) | type TuiAppendPromptError = TuiAppendPromptErrors[keyof TuiAppendPromptE... type TuiAppendPromptResponses (line 4039) | type TuiAppendPromptResponses = { type TuiAppendPromptResponse (line 4046) | type TuiAppendPromptResponse = TuiAppendPromptResponses[keyof TuiAppendP... type TuiOpenHelpData (line 4048) | type TuiOpenHelpData = { type TuiOpenHelpResponses (line 4057) | type TuiOpenHelpResponses = { type TuiOpenHelpResponse (line 4064) | type TuiOpenHelpResponse = TuiOpenHelpResponses[keyof TuiOpenHelpRespons... type TuiOpenSessionsData (line 4066) | type TuiOpenSessionsData = { type TuiOpenSessionsResponses (line 4075) | type TuiOpenSessionsResponses = { type TuiOpenSessionsResponse (line 4082) | type TuiOpenSessionsResponse = TuiOpenSessionsResponses[keyof TuiOpenSes... type TuiOpenThemesData (line 4084) | type TuiOpenThemesData = { type TuiOpenThemesResponses (line 4093) | type TuiOpenThemesResponses = { type TuiOpenThemesResponse (line 4100) | type TuiOpenThemesResponse = TuiOpenThemesResponses[keyof TuiOpenThemesR... type TuiOpenModelsData (line 4102) | type TuiOpenModelsData = { type TuiOpenModelsResponses (line 4111) | type TuiOpenModelsResponses = { type TuiOpenModelsResponse (line 4118) | type TuiOpenModelsResponse = TuiOpenModelsResponses[keyof TuiOpenModelsR... type TuiSubmitPromptData (line 4120) | type TuiSubmitPromptData = { type TuiSubmitPromptResponses (line 4129) | type TuiSubmitPromptResponses = { type TuiSubmitPromptResponse (line 4136) | type TuiSubmitPromptResponse = TuiSubmitPromptResponses[keyof TuiSubmitP... type TuiClearPromptData (line 4138) | type TuiClearPromptData = { type TuiClearPromptResponses (line 4147) | type TuiClearPromptResponses = { type TuiClearPromptResponse (line 4154) | type TuiClearPromptResponse = TuiClearPromptResponses[keyof TuiClearProm... type TuiExecuteCommandData (line 4156) | type TuiExecuteCommandData = { type TuiExecuteCommandErrors (line 4167) | type TuiExecuteCommandErrors = { type TuiExecuteCommandError (line 4174) | type TuiExecuteCommandError = TuiExecuteCommandErrors[keyof TuiExecuteCo... type TuiExecuteCommandResponses (line 4176) | type TuiExecuteCommandResponses = { type TuiExecuteCommandResponse (line 4183) | type TuiExecuteCommandResponse = TuiExecuteCommandResponses[keyof TuiExe... type TuiShowToastData (line 4185) | type TuiShowToastData = { type TuiShowToastResponses (line 4202) | type TuiShowToastResponses = { type TuiShowToastResponse (line 4209) | type TuiShowToastResponse = TuiShowToastResponses[keyof TuiShowToastResp... type TuiPublishData (line 4211) | type TuiPublishData = { type TuiPublishErrors (line 4220) | type TuiPublishErrors = { type TuiPublishError (line 4227) | type TuiPublishError = TuiPublishErrors[keyof TuiPublishErrors]; type TuiPublishResponses (line 4229) | type TuiPublishResponses = { type TuiPublishResponse (line 4236) | type TuiPublishResponse = TuiPublishResponses[keyof TuiPublishResponses]; type TuiControlNextData (line 4238) | type TuiControlNextData = { type TuiControlNextResponses (line 4247) | type TuiControlNextResponses = { type TuiControlNextResponse (line 4257) | type TuiControlNextResponse = TuiControlNextResponses[keyof TuiControlNe... type TuiControlResponseData (line 4259) | type TuiControlResponseData = { type TuiControlResponseResponses (line 4268) | type TuiControlResponseResponses = { type TuiControlResponseResponse (line 4275) | type TuiControlResponseResponse = TuiControlResponseResponses[keyof TuiC... type AuthSetData (line 4277) | type AuthSetData = { type AuthSetErrors (line 4288) | type AuthSetErrors = { type AuthSetError (line 4295) | type AuthSetError = AuthSetErrors[keyof AuthSetErrors]; type AuthSetResponses (line 4297) | type AuthSetResponses = { type AuthSetResponse (line 4304) | type AuthSetResponse = AuthSetResponses[keyof AuthSetResponses]; type EventSubscribeData (line 4306) | type EventSubscribeData = { type EventSubscribeResponses (line 4315) | type EventSubscribeResponses = { type EventSubscribeResponse (line 4322) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/sdks/__snapshots__/opencode/grouped/sdk.gen.ts type Options (line 7) | type Options; type Session (line 592) | type Session = { type EventSessionCreated (line 623) | type EventSessionCreated = { type EventSessionUpdated (line 630) | type EventSessionUpdated = { type EventSessionDeleted (line 637) | type EventSessionDeleted = { type EventSessionDiff (line 644) | type EventSessionDiff = { type EventSessionError (line 652) | type EventSessionError = { type EventFileWatcherUpdated (line 660) | type EventFileWatcherUpdated = { type EventVcsBranchUpdated (line 668) | type EventVcsBranchUpdated = { type Pty (line 675) | type Pty = { type EventPtyCreated (line 685) | type EventPtyCreated = { type EventPtyUpdated (line 692) | type EventPtyUpdated = { type EventPtyExited (line 699) | type EventPtyExited = { type EventPtyDeleted (line 707) | type EventPtyDeleted = { type EventServerConnected (line 714) | type EventServerConnected = { type EventGlobalDisposed (line 721) | type EventGlobalDisposed = { type Event (line 728) | type Event = EventInstallationUpdated | EventInstallationUpdateAvailable... type GlobalEvent (line 730) | type GlobalEvent = { type BadRequestError (line 735) | type BadRequestError = { type NotFoundError (line 743) | type NotFoundError = { type KeybindsConfig (line 753) | type KeybindsConfig = { type LogLevel (line 1107) | type LogLevel = 'DEBUG' | 'INFO' | 'WARN' | 'ERROR'; type ServerConfig (line 1112) | type ServerConfig = { type PermissionActionConfig (line 1131) | type PermissionActionConfig = 'ask' | 'allow' | 'deny'; type PermissionObjectConfig (line 1133) | type PermissionObjectConfig = { type PermissionRuleConfig (line 1137) | type PermissionRuleConfig = PermissionActionConfig | PermissionObjectCon... type PermissionConfig (line 1139) | type PermissionConfig = { type AgentConfig (line 1158) | type AgentConfig = { type ProviderConfig (line 1194) | type ProviderConfig = { type McpLocalConfig (line 1279) | type McpLocalConfig = { type McpOAuthConfig (line 1304) | type McpOAuthConfig = { type McpRemoteConfig (line 1319) | type McpRemoteConfig = { type LayoutConfig (line 1351) | type LayoutConfig = 'auto' | 'stretch'; type Config (line 1353) | type Config = { type ToolIds (line 1568) | type ToolIds = Array; type ToolListItem (line 1570) | type ToolListItem = { type ToolList (line 1576) | type ToolList = Array; type Path (line 1578) | type Path = { type VcsInfo (line 1586) | type VcsInfo = { type TextPartInput (line 1590) | type TextPartInput = { type FilePartInput (line 1605) | type FilePartInput = { type AgentPartInput (line 1614) | type AgentPartInput = { type SubtaskPartInput (line 1625) | type SubtaskPartInput = { type Command (line 1634) | type Command = { type Model (line 1645) | type Model = { type Provider (line 1713) | type Provider = { type ProviderAuthMethod (line 1727) | type ProviderAuthMethod = { type ProviderAuthAuthorization (line 1732) | type ProviderAuthAuthorization = { type Symbol (line 1738) | type Symbol = { type FileNode (line 1747) | type FileNode = { type FileContent (line 1755) | type FileContent = { type File (line 1777) | type File = { type Agent (line 1784) | type Agent = { type McpStatusConnected (line 1805) | type McpStatusConnected = { type McpStatusDisabled (line 1809) | type McpStatusDisabled = { type McpStatusFailed (line 1813) | type McpStatusFailed = { type McpStatusNeedsAuth (line 1818) | type McpStatusNeedsAuth = { type McpStatusNeedsClientRegistration (line 1822) | type McpStatusNeedsClientRegistration = { type McpStatus (line 1827) | type McpStatus = McpStatusConnected | McpStatusDisabled | McpStatusFaile... type LspStatus (line 1829) | type LspStatus = { type FormatterStatus (line 1836) | type FormatterStatus = { type OAuth (line 1842) | type OAuth = { type ApiAuth (line 1850) | type ApiAuth = { type WellKnownAuth (line 1855) | type WellKnownAuth = { type Auth (line 1861) | type Auth = OAuth | ApiAuth | WellKnownAuth; type GlobalHealthData (line 1863) | type GlobalHealthData = { type GlobalHealthResponses (line 1870) | type GlobalHealthResponses = { type GlobalHealthResponse (line 1880) | type GlobalHealthResponse = GlobalHealthResponses[keyof GlobalHealthResp... type GlobalEventData (line 1882) | type GlobalEventData = { type GlobalEventResponses (line 1889) | type GlobalEventResponses = { type GlobalEventResponse (line 1896) | type GlobalEventResponse = GlobalEventResponses[keyof GlobalEventRespons... type GlobalDisposeData (line 1898) | type GlobalDisposeData = { type GlobalDisposeResponses (line 1905) | type GlobalDisposeResponses = { type GlobalDisposeResponse (line 1912) | type GlobalDisposeResponse = GlobalDisposeResponses[keyof GlobalDisposeR... type ProjectListData (line 1914) | type ProjectListData = { type ProjectListResponses (line 1923) | type ProjectListResponses = { type ProjectListResponse (line 1930) | type ProjectListResponse = ProjectListResponses[keyof ProjectListRespons... type ProjectCurrentData (line 1932) | type ProjectCurrentData = { type ProjectCurrentResponses (line 1941) | type ProjectCurrentResponses = { type ProjectCurrentResponse (line 1948) | type ProjectCurrentResponse = ProjectCurrentResponses[keyof ProjectCurre... type ProjectUpdateData (line 1950) | type ProjectUpdateData = { type ProjectUpdateErrors (line 1967) | type ProjectUpdateErrors = { type ProjectUpdateError (line 1978) | type ProjectUpdateError = ProjectUpdateErrors[keyof ProjectUpdateErrors]; type ProjectUpdateResponses (line 1980) | type ProjectUpdateResponses = { type ProjectUpdateResponse (line 1987) | type ProjectUpdateResponse = ProjectUpdateResponses[keyof ProjectUpdateR... type PtyListData (line 1989) | type PtyListData = { type PtyListResponses (line 1998) | type PtyListResponses = { type PtyListResponse (line 2005) | type PtyListResponse = PtyListResponses[keyof PtyListResponses]; type PtyCreateData (line 2007) | type PtyCreateData = { type PtyCreateErrors (line 2024) | type PtyCreateErrors = { type PtyCreateError (line 2031) | type PtyCreateError = PtyCreateErrors[keyof PtyCreateErrors]; type PtyCreateResponses (line 2033) | type PtyCreateResponses = { type PtyCreateResponse (line 2040) | type PtyCreateResponse = PtyCreateResponses[keyof PtyCreateResponses]; type PtyRemoveData (line 2042) | type PtyRemoveData = { type PtyRemoveErrors (line 2053) | type PtyRemoveErrors = { type PtyRemoveError (line 2060) | type PtyRemoveError = PtyRemoveErrors[keyof PtyRemoveErrors]; type PtyRemoveResponses (line 2062) | type PtyRemoveResponses = { type PtyRemoveResponse (line 2069) | type PtyRemoveResponse = PtyRemoveResponses[keyof PtyRemoveResponses]; type PtyGetData (line 2071) | type PtyGetData = { type PtyGetErrors (line 2082) | type PtyGetErrors = { type PtyGetError (line 2089) | type PtyGetError = PtyGetErrors[keyof PtyGetErrors]; type PtyGetResponses (line 2091) | type PtyGetResponses = { type PtyGetResponse (line 2098) | type PtyGetResponse = PtyGetResponses[keyof PtyGetResponses]; type PtyUpdateData (line 2100) | type PtyUpdateData = { type PtyUpdateErrors (line 2117) | type PtyUpdateErrors = { type PtyUpdateError (line 2124) | type PtyUpdateError = PtyUpdateErrors[keyof PtyUpdateErrors]; type PtyUpdateResponses (line 2126) | type PtyUpdateResponses = { type PtyUpdateResponse (line 2133) | type PtyUpdateResponse = PtyUpdateResponses[keyof PtyUpdateResponses]; type PtyConnectData (line 2135) | type PtyConnectData = { type PtyConnectErrors (line 2146) | type PtyConnectErrors = { type PtyConnectError (line 2153) | type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]; type PtyConnectResponses (line 2155) | type PtyConnectResponses = { type PtyConnectResponse (line 2162) | type PtyConnectResponse = PtyConnectResponses[keyof PtyConnectResponses]; type ConfigGetData (line 2164) | type ConfigGetData = { type ConfigGetResponses (line 2173) | type ConfigGetResponses = { type ConfigGetResponse (line 2180) | type ConfigGetResponse = ConfigGetResponses[keyof ConfigGetResponses]; type ConfigUpdateData (line 2182) | type ConfigUpdateData = { type ConfigUpdateErrors (line 2191) | type ConfigUpdateErrors = { type ConfigUpdateError (line 2198) | type ConfigUpdateError = ConfigUpdateErrors[keyof ConfigUpdateErrors]; type ConfigUpdateResponses (line 2200) | type ConfigUpdateResponses = { type ConfigUpdateResponse (line 2207) | type ConfigUpdateResponse = ConfigUpdateResponses[keyof ConfigUpdateResp... type ToolIdsData (line 2209) | type ToolIdsData = { type ToolIdsErrors (line 2218) | type ToolIdsErrors = { type ToolIdsError (line 2225) | type ToolIdsError = ToolIdsErrors[keyof ToolIdsErrors]; type ToolIdsResponses (line 2227) | type ToolIdsResponses = { type ToolIdsResponse (line 2234) | type ToolIdsResponse = ToolIdsResponses[keyof ToolIdsResponses]; type ToolListData (line 2236) | type ToolListData = { type ToolListErrors (line 2247) | type ToolListErrors = { type ToolListError (line 2254) | type ToolListError = ToolListErrors[keyof ToolListErrors]; type ToolListResponses (line 2256) | type ToolListResponses = { type ToolListResponse (line 2263) | type ToolListResponse = ToolListResponses[keyof ToolListResponses]; type InstanceDisposeData (line 2265) | type InstanceDisposeData = { type InstanceDisposeResponses (line 2274) | type InstanceDisposeResponses = { type InstanceDisposeResponse (line 2281) | type InstanceDisposeResponse = InstanceDisposeResponses[keyof InstanceDi... type PathGetData (line 2283) | type PathGetData = { type PathGetResponses (line 2292) | type PathGetResponses = { type PathGetResponse (line 2299) | type PathGetResponse = PathGetResponses[keyof PathGetResponses]; type VcsGetData (line 2301) | type VcsGetData = { type VcsGetResponses (line 2310) | type VcsGetResponses = { type VcsGetResponse (line 2317) | type VcsGetResponse = VcsGetResponses[keyof VcsGetResponses]; type SessionListData (line 2319) | type SessionListData = { type SessionListResponses (line 2328) | type SessionListResponses = { type SessionListResponse (line 2335) | type SessionListResponse = SessionListResponses[keyof SessionListRespons... type SessionCreateData (line 2337) | type SessionCreateData = { type SessionCreateErrors (line 2350) | type SessionCreateErrors = { type SessionCreateError (line 2357) | type SessionCreateError = SessionCreateErrors[keyof SessionCreateErrors]; type SessionCreateResponses (line 2359) | type SessionCreateResponses = { type SessionCreateResponse (line 2366) | type SessionCreateResponse = SessionCreateResponses[keyof SessionCreateR... type SessionStatusData (line 2368) | type SessionStatusData = { type SessionStatusErrors (line 2377) | type SessionStatusErrors = { type SessionStatusError (line 2384) | type SessionStatusError = SessionStatusErrors[keyof SessionStatusErrors]; type SessionStatusResponses (line 2386) | type SessionStatusResponses = { type SessionStatusResponse (line 2395) | type SessionStatusResponse = SessionStatusResponses[keyof SessionStatusR... type SessionDeleteData (line 2397) | type SessionDeleteData = { type SessionDeleteErrors (line 2408) | type SessionDeleteErrors = { type SessionDeleteError (line 2419) | type SessionDeleteError = SessionDeleteErrors[keyof SessionDeleteErrors]; type SessionDeleteResponses (line 2421) | type SessionDeleteResponses = { type SessionDeleteResponse (line 2428) | type SessionDeleteResponse = SessionDeleteResponses[keyof SessionDeleteR... type SessionGetData (line 2430) | type SessionGetData = { type SessionGetErrors (line 2441) | type SessionGetErrors = { type SessionGetError (line 2452) | type SessionGetError = SessionGetErrors[keyof SessionGetErrors]; type SessionGetResponses (line 2454) | type SessionGetResponses = { type SessionGetResponse (line 2461) | type SessionGetResponse = SessionGetResponses[keyof SessionGetResponses]; type SessionUpdateData (line 2463) | type SessionUpdateData = { type SessionUpdateErrors (line 2479) | type SessionUpdateErrors = { type SessionUpdateError (line 2490) | type SessionUpdateError = SessionUpdateErrors[keyof SessionUpdateErrors]; type SessionUpdateResponses (line 2492) | type SessionUpdateResponses = { type SessionUpdateResponse (line 2499) | type SessionUpdateResponse = SessionUpdateResponses[keyof SessionUpdateR... type SessionChildrenData (line 2501) | type SessionChildrenData = { type SessionChildrenErrors (line 2512) | type SessionChildrenErrors = { type SessionChildrenError (line 2523) | type SessionChildrenError = SessionChildrenErrors[keyof SessionChildrenE... type SessionChildrenResponses (line 2525) | type SessionChildrenResponses = { type SessionChildrenResponse (line 2532) | type SessionChildrenResponse = SessionChildrenResponses[keyof SessionChi... type SessionTodoData (line 2534) | type SessionTodoData = { type SessionTodoErrors (line 2548) | type SessionTodoErrors = { type SessionTodoError (line 2559) | type SessionTodoError = SessionTodoErrors[keyof SessionTodoErrors]; type SessionTodoResponses (line 2561) | type SessionTodoResponses = { type SessionTodoResponse (line 2568) | type SessionTodoResponse = SessionTodoResponses[keyof SessionTodoRespons... type SessionInitData (line 2570) | type SessionInitData = { type SessionInitErrors (line 2588) | type SessionInitErrors = { type SessionInitError (line 2599) | type SessionInitError = SessionInitErrors[keyof SessionInitErrors]; type SessionInitResponses (line 2601) | type SessionInitResponses = { type SessionInitResponse (line 2608) | type SessionInitResponse = SessionInitResponses[keyof SessionInitRespons... type SessionForkData (line 2610) | type SessionForkData = { type SessionForkResponses (line 2623) | type SessionForkResponses = { type SessionForkResponse (line 2630) | type SessionForkResponse = SessionForkResponses[keyof SessionForkRespons... type SessionAbortData (line 2632) | type SessionAbortData = { type SessionAbortErrors (line 2643) | type SessionAbortErrors = { type SessionAbortError (line 2654) | type SessionAbortError = SessionAbortErrors[keyof SessionAbortErrors]; type SessionAbortResponses (line 2656) | type SessionAbortResponses = { type SessionAbortResponse (line 2663) | type SessionAbortResponse = SessionAbortResponses[keyof SessionAbortResp... type SessionUnshareData (line 2665) | type SessionUnshareData = { type SessionUnshareErrors (line 2676) | type SessionUnshareErrors = { type SessionUnshareError (line 2687) | type SessionUnshareError = SessionUnshareErrors[keyof SessionUnshareErro... type SessionUnshareResponses (line 2689) | type SessionUnshareResponses = { type SessionUnshareResponse (line 2696) | type SessionUnshareResponse = SessionUnshareResponses[keyof SessionUnsha... type SessionShareData (line 2698) | type SessionShareData = { type SessionShareErrors (line 2709) | type SessionShareErrors = { type SessionShareError (line 2720) | type SessionShareError = SessionShareErrors[keyof SessionShareErrors]; type SessionShareResponses (line 2722) | type SessionShareResponses = { type SessionShareResponse (line 2729) | type SessionShareResponse = SessionShareResponses[keyof SessionShareResp... type SessionDiffData (line 2731) | type SessionDiffData = { type SessionDiffErrors (line 2746) | type SessionDiffErrors = { type SessionDiffError (line 2757) | type SessionDiffError = SessionDiffErrors[keyof SessionDiffErrors]; type SessionDiffResponses (line 2759) | type SessionDiffResponses = { type SessionDiffResponse (line 2766) | type SessionDiffResponse = SessionDiffResponses[keyof SessionDiffRespons... type SessionSummarizeData (line 2768) | type SessionSummarizeData = { type SessionSummarizeErrors (line 2786) | type SessionSummarizeErrors = { type SessionSummarizeError (line 2797) | type SessionSummarizeError = SessionSummarizeErrors[keyof SessionSummari... type SessionSummarizeResponses (line 2799) | type SessionSummarizeResponses = { type SessionSummarizeResponse (line 2806) | type SessionSummarizeResponse = SessionSummarizeResponses[keyof SessionS... type SessionMessagesData (line 2808) | type SessionMessagesData = { type SessionMessagesErrors (line 2823) | type SessionMessagesErrors = { type SessionMessagesError (line 2834) | type SessionMessagesError = SessionMessagesErrors[keyof SessionMessagesE... type SessionMessagesResponses (line 2836) | type SessionMessagesResponses = { type SessionMessagesResponse (line 2846) | type SessionMessagesResponse = SessionMessagesResponses[keyof SessionMes... type SessionPromptData (line 2848) | type SessionPromptData = { type SessionPromptErrors (line 2879) | type SessionPromptErrors = { type SessionPromptError (line 2890) | type SessionPromptError = SessionPromptErrors[keyof SessionPromptErrors]; type SessionPromptResponses (line 2892) | type SessionPromptResponses = { type SessionPromptResponse (line 2902) | type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptR... type SessionMessageData (line 2904) | type SessionMessageData = { type SessionMessageErrors (line 2922) | type SessionMessageErrors = { type SessionMessageError (line 2933) | type SessionMessageError = SessionMessageErrors[keyof SessionMessageErro... type SessionMessageResponses (line 2935) | type SessionMessageResponses = { type SessionMessageResponse (line 2945) | type SessionMessageResponse = SessionMessageResponses[keyof SessionMessa... type PartDeleteData (line 2947) | type PartDeleteData = { type PartDeleteErrors (line 2969) | type PartDeleteErrors = { type PartDeleteError (line 2980) | type PartDeleteError = PartDeleteErrors[keyof PartDeleteErrors]; type PartDeleteResponses (line 2982) | type PartDeleteResponses = { type PartDeleteResponse (line 2989) | type PartDeleteResponse = PartDeleteResponses[keyof PartDeleteResponses]; type PartUpdateData (line 2991) | type PartUpdateData = { type PartUpdateErrors (line 3013) | type PartUpdateErrors = { type PartUpdateError (line 3024) | type PartUpdateError = PartUpdateErrors[keyof PartUpdateErrors]; type PartUpdateResponses (line 3026) | type PartUpdateResponses = { type PartUpdateResponse (line 3033) | type PartUpdateResponse = PartUpdateResponses[keyof PartUpdateResponses]; type SessionPromptAsyncData (line 3035) | type SessionPromptAsyncData = { type SessionPromptAsyncErrors (line 3066) | type SessionPromptAsyncErrors = { type SessionPromptAsyncError (line 3077) | type SessionPromptAsyncError = SessionPromptAsyncErrors[keyof SessionPro... type SessionPromptAsyncResponses (line 3079) | type SessionPromptAsyncResponses = { type SessionPromptAsyncResponse (line 3086) | type SessionPromptAsyncResponse = SessionPromptAsyncResponses[keyof Sess... type SessionCommandData (line 3088) | type SessionCommandData = { type SessionCommandErrors (line 3109) | type SessionCommandErrors = { type SessionCommandError (line 3120) | type SessionCommandError = SessionCommandErrors[keyof SessionCommandErro... type SessionCommandResponses (line 3122) | type SessionCommandResponses = { type SessionCommandResponse (line 3132) | type SessionCommandResponse = SessionCommandResponses[keyof SessionComma... type SessionShellData (line 3134) | type SessionShellData = { type SessionShellErrors (line 3155) | type SessionShellErrors = { type SessionShellError (line 3166) | type SessionShellError = SessionShellErrors[keyof SessionShellErrors]; type SessionShellResponses (line 3168) | type SessionShellResponses = { type SessionShellResponse (line 3175) | type SessionShellResponse = SessionShellResponses[keyof SessionShellResp... type SessionRevertData (line 3177) | type SessionRevertData = { type SessionRevertErrors (line 3191) | type SessionRevertErrors = { type SessionRevertError (line 3202) | type SessionRevertError = SessionRevertErrors[keyof SessionRevertErrors]; type SessionRevertResponses (line 3204) | type SessionRevertResponses = { type SessionRevertResponse (line 3211) | type SessionRevertResponse = SessionRevertResponses[keyof SessionRevertR... type SessionUnrevertData (line 3213) | type SessionUnrevertData = { type SessionUnrevertErrors (line 3224) | type SessionUnrevertErrors = { type SessionUnrevertError (line 3235) | type SessionUnrevertError = SessionUnrevertErrors[keyof SessionUnrevertE... type SessionUnrevertResponses (line 3237) | type SessionUnrevertResponses = { type SessionUnrevertResponse (line 3244) | type SessionUnrevertResponse = SessionUnrevertResponses[keyof SessionUnr... type PermissionRespondData (line 3246) | type PermissionRespondData = { type PermissionRespondErrors (line 3260) | type PermissionRespondErrors = { type PermissionRespondError (line 3271) | type PermissionRespondError = PermissionRespondErrors[keyof PermissionRe... type PermissionRespondResponses (line 3273) | type PermissionRespondResponses = { type PermissionRespondResponse (line 3280) | type PermissionRespondResponse = PermissionRespondResponses[keyof Permis... type PermissionReplyData (line 3282) | type PermissionReplyData = { type PermissionReplyErrors (line 3295) | type PermissionReplyErrors = { type PermissionReplyError (line 3306) | type PermissionReplyError = PermissionReplyErrors[keyof PermissionReplyE... type PermissionReplyResponses (line 3308) | type PermissionReplyResponses = { type PermissionReplyResponse (line 3315) | type PermissionReplyResponse = PermissionReplyResponses[keyof Permission... type PermissionListData (line 3317) | type PermissionListData = { type PermissionListResponses (line 3326) | type PermissionListResponses = { type PermissionListResponse (line 3333) | type PermissionListResponse = PermissionListResponses[keyof PermissionLi... type CommandListData (line 3335) | type CommandListData = { type CommandListResponses (line 3344) | type CommandListResponses = { type CommandListResponse (line 3351) | type CommandListResponse = CommandListResponses[keyof CommandListRespons... type ConfigProvidersData (line 3353) | type ConfigProvidersData = { type ConfigProvidersResponses (line 3362) | type ConfigProvidersResponses = { type ConfigProvidersResponse (line 3374) | type ConfigProvidersResponse = ConfigProvidersResponses[keyof ConfigProv... type ProviderListData (line 3376) | type ProviderListData = { type ProviderListResponses (line 3385) | type ProviderListResponses = { type ProviderListResponse (line 3455) | type ProviderListResponse = ProviderListResponses[keyof ProviderListResp... type ProviderAuthData (line 3457) | type ProviderAuthData = { type ProviderAuthResponses (line 3466) | type ProviderAuthResponses = { type ProviderAuthResponse (line 3475) | type ProviderAuthResponse = ProviderAuthResponses[keyof ProviderAuthResp... type ProviderOauthAuthorizeData (line 3477) | type ProviderOauthAuthorizeData = { type ProviderOauthAuthorizeErrors (line 3496) | type ProviderOauthAuthorizeErrors = { type ProviderOauthAuthorizeError (line 3503) | type ProviderOauthAuthorizeError = ProviderOauthAuthorizeErrors[keyof Pr... type ProviderOauthAuthorizeResponses (line 3505) | type ProviderOauthAuthorizeResponses = { type ProviderOauthAuthorizeResponse (line 3512) | type ProviderOauthAuthorizeResponse = ProviderOauthAuthorizeResponses[ke... type ProviderOauthCallbackData (line 3514) | type ProviderOauthCallbackData = { type ProviderOauthCallbackErrors (line 3537) | type ProviderOauthCallbackErrors = { type ProviderOauthCallbackError (line 3544) | type ProviderOauthCallbackError = ProviderOauthCallbackErrors[keyof Prov... type ProviderOauthCallbackResponses (line 3546) | type ProviderOauthCallbackResponses = { type ProviderOauthCallbackResponse (line 3553) | type ProviderOauthCallbackResponse = ProviderOauthCallbackResponses[keyo... type FindTextData (line 3555) | type FindTextData = { type FindTextResponses (line 3565) | type FindTextResponses = { type FindTextResponse (line 3588) | type FindTextResponse = FindTextResponses[keyof FindTextResponses]; type FindFilesData (line 3590) | type FindFilesData = { type FindFilesResponses (line 3603) | type FindFilesResponses = { type FindFilesResponse (line 3610) | type FindFilesResponse = FindFilesResponses[keyof FindFilesResponses]; type FindSymbolsData (line 3612) | type FindSymbolsData = { type FindSymbolsResponses (line 3622) | type FindSymbolsResponses = { type FindSymbolsResponse (line 3629) | type FindSymbolsResponse = FindSymbolsResponses[keyof FindSymbolsRespons... type FileListData (line 3631) | type FileListData = { type FileListResponses (line 3641) | type FileListResponses = { type FileListResponse (line 3648) | type FileListResponse = FileListResponses[keyof FileListResponses]; type FileReadData (line 3650) | type FileReadData = { type FileReadResponses (line 3660) | type FileReadResponses = { type FileReadResponse (line 3667) | type FileReadResponse = FileReadResponses[keyof FileReadResponses]; type FileStatusData (line 3669) | type FileStatusData = { type FileStatusResponses (line 3678) | type FileStatusResponses = { type FileStatusResponse (line 3685) | type FileStatusResponse = FileStatusResponses[keyof FileStatusResponses]; type AppLogData (line 3687) | type AppLogData = { type AppLogErrors (line 3715) | type AppLogErrors = { type AppLogError (line 3722) | type AppLogError = AppLogErrors[keyof AppLogErrors]; type AppLogResponses (line 3724) | type AppLogResponses = { type AppLogResponse (line 3731) | type AppLogResponse = AppLogResponses[keyof AppLogResponses]; type AppAgentsData (line 3733) | type AppAgentsData = { type AppAgentsResponses (line 3742) | type AppAgentsResponses = { type AppAgentsResponse (line 3749) | type AppAgentsResponse = AppAgentsResponses[keyof AppAgentsResponses]; type McpStatusData (line 3751) | type McpStatusData = { type McpStatusResponses (line 3760) | type McpStatusResponses = { type McpStatusResponse (line 3769) | type McpStatusResponse = McpStatusResponses[keyof McpStatusResponses]; type McpAddData (line 3771) | type McpAddData = { type McpAddErrors (line 3783) | type McpAddErrors = { type McpAddError (line 3790) | type McpAddError = McpAddErrors[keyof McpAddErrors]; type McpAddResponses (line 3792) | type McpAddResponses = { type McpAddResponse (line 3801) | type McpAddResponse = McpAddResponses[keyof McpAddResponses]; type McpAuthRemoveData (line 3803) | type McpAuthRemoveData = { type McpAuthRemoveErrors (line 3814) | type McpAuthRemoveErrors = { type McpAuthRemoveError (line 3821) | type McpAuthRemoveError = McpAuthRemoveErrors[keyof McpAuthRemoveErrors]; type McpAuthRemoveResponses (line 3823) | type McpAuthRemoveResponses = { type McpAuthRemoveResponse (line 3832) | type McpAuthRemoveResponse = McpAuthRemoveResponses[keyof McpAuthRemoveR... type McpAuthStartData (line 3834) | type McpAuthStartData = { type McpAuthStartErrors (line 3845) | type McpAuthStartErrors = { type McpAuthStartError (line 3856) | type McpAuthStartError = McpAuthStartErrors[keyof McpAuthStartErrors]; type McpAuthStartResponses (line 3858) | type McpAuthStartResponses = { type McpAuthStartResponse (line 3870) | type McpAuthStartResponse = McpAuthStartResponses[keyof McpAuthStartResp... type McpAuthCallbackData (line 3872) | type McpAuthCallbackData = { type McpAuthCallbackErrors (line 3888) | type McpAuthCallbackErrors = { type McpAuthCallbackError (line 3899) | type McpAuthCallbackError = McpAuthCallbackErrors[keyof McpAuthCallbackE... type McpAuthCallbackResponses (line 3901) | type McpAuthCallbackResponses = { type McpAuthCallbackResponse (line 3908) | type McpAuthCallbackResponse = McpAuthCallbackResponses[keyof McpAuthCal... type McpAuthAuthenticateData (line 3910) | type McpAuthAuthenticateData = { type McpAuthAuthenticateErrors (line 3921) | type McpAuthAuthenticateErrors = { type McpAuthAuthenticateError (line 3932) | type McpAuthAuthenticateError = McpAuthAuthenticateErrors[keyof McpAuthA... type McpAuthAuthenticateResponses (line 3934) | type McpAuthAuthenticateResponses = { type McpAuthAuthenticateResponse (line 3941) | type McpAuthAuthenticateResponse = McpAuthAuthenticateResponses[keyof Mc... type McpConnectData (line 3943) | type McpConnectData = { type McpConnectResponses (line 3954) | type McpConnectResponses = { type McpConnectResponse (line 3961) | type McpConnectResponse = McpConnectResponses[keyof McpConnectResponses]; type McpDisconnectData (line 3963) | type McpDisconnectData = { type McpDisconnectResponses (line 3974) | type McpDisconnectResponses = { type McpDisconnectResponse (line 3981) | type McpDisconnectResponse = McpDisconnectResponses[keyof McpDisconnectR... type LspStatusData (line 3983) | type LspStatusData = { type LspStatusResponses (line 3992) | type LspStatusResponses = { type LspStatusResponse (line 3999) | type LspStatusResponse = LspStatusResponses[keyof LspStatusResponses]; type FormatterStatusData (line 4001) | type FormatterStatusData = { type FormatterStatusResponses (line 4010) | type FormatterStatusResponses = { type FormatterStatusResponse (line 4017) | type FormatterStatusResponse = FormatterStatusResponses[keyof FormatterS... type TuiAppendPromptData (line 4019) | type TuiAppendPromptData = { type TuiAppendPromptErrors (line 4030) | type TuiAppendPromptErrors = { type TuiAppendPromptError (line 4037) | type TuiAppendPromptError = TuiAppendPromptErrors[keyof TuiAppendPromptE... type TuiAppendPromptResponses (line 4039) | type TuiAppendPromptResponses = { type TuiAppendPromptResponse (line 4046) | type TuiAppendPromptResponse = TuiAppendPromptResponses[keyof TuiAppendP... type TuiOpenHelpData (line 4048) | type TuiOpenHelpData = { type TuiOpenHelpResponses (line 4057) | type TuiOpenHelpResponses = { type TuiOpenHelpResponse (line 4064) | type TuiOpenHelpResponse = TuiOpenHelpResponses[keyof TuiOpenHelpRespons... type TuiOpenSessionsData (line 4066) | type TuiOpenSessionsData = { type TuiOpenSessionsResponses (line 4075) | type TuiOpenSessionsResponses = { type TuiOpenSessionsResponse (line 4082) | type TuiOpenSessionsResponse = TuiOpenSessionsResponses[keyof TuiOpenSes... type TuiOpenThemesData (line 4084) | type TuiOpenThemesData = { type TuiOpenThemesResponses (line 4093) | type TuiOpenThemesResponses = { type TuiOpenThemesResponse (line 4100) | type TuiOpenThemesResponse = TuiOpenThemesResponses[keyof TuiOpenThemesR... type TuiOpenModelsData (line 4102) | type TuiOpenModelsData = { type TuiOpenModelsResponses (line 4111) | type TuiOpenModelsResponses = { type TuiOpenModelsResponse (line 4118) | type TuiOpenModelsResponse = TuiOpenModelsResponses[keyof TuiOpenModelsR... type TuiSubmitPromptData (line 4120) | type TuiSubmitPromptData = { type TuiSubmitPromptResponses (line 4129) | type TuiSubmitPromptResponses = { type TuiSubmitPromptResponse (line 4136) | type TuiSubmitPromptResponse = TuiSubmitPromptResponses[keyof TuiSubmitP... type TuiClearPromptData (line 4138) | type TuiClearPromptData = { type TuiClearPromptResponses (line 4147) | type TuiClearPromptResponses = { type TuiClearPromptResponse (line 4154) | type TuiClearPromptResponse = TuiClearPromptResponses[keyof TuiClearProm... type TuiExecuteCommandData (line 4156) | type TuiExecuteCommandData = { type TuiExecuteCommandErrors (line 4167) | type TuiExecuteCommandErrors = { type TuiExecuteCommandError (line 4174) | type TuiExecuteCommandError = TuiExecuteCommandErrors[keyof TuiExecuteCo... type TuiExecuteCommandResponses (line 4176) | type TuiExecuteCommandResponses = { type TuiExecuteCommandResponse (line 4183) | type TuiExecuteCommandResponse = TuiExecuteCommandResponses[keyof TuiExe... type TuiShowToastData (line 4185) | type TuiShowToastData = { type TuiShowToastResponses (line 4202) | type TuiShowToastResponses = { type TuiShowToastResponse (line 4209) | type TuiShowToastResponse = TuiShowToastResponses[keyof TuiShowToastResp... type TuiPublishData (line 4211) | type TuiPublishData = { type TuiPublishErrors (line 4220) | type TuiPublishErrors = { type TuiPublishError (line 4227) | type TuiPublishError = TuiPublishErrors[keyof TuiPublishErrors]; type TuiPublishResponses (line 4229) | type TuiPublishResponses = { type TuiPublishResponse (line 4236) | type TuiPublishResponse = TuiPublishResponses[keyof TuiPublishResponses]; type TuiControlNextData (line 4238) | type TuiControlNextData = { type TuiControlNextResponses (line 4247) | type TuiControlNextResponses = { type TuiControlNextResponse (line 4257) | type TuiControlNextResponse = TuiControlNextResponses[keyof TuiControlNe... type TuiControlResponseData (line 4259) | type TuiControlResponseData = { type TuiControlResponseResponses (line 4268) | type TuiControlResponseResponses = { type TuiControlResponseResponse (line 4275) | type TuiControlResponseResponse = TuiControlResponseResponses[keyof TuiC... type AuthSetData (line 4277) | type AuthSetData = { type AuthSetErrors (line 4288) | type AuthSetErrors = { type AuthSetError (line 4295) | type AuthSetError = AuthSetErrors[keyof AuthSetErrors]; type AuthSetResponses (line 4297) | type AuthSetResponses = { type AuthSetResponse (line 4304) | type AuthSetResponse = AuthSetResponses[keyof AuthSetResponses]; type EventSubscribeData (line 4306) | type EventSubscribeData = { type EventSubscribeResponses (line 4315) | type EventSubscribeResponses = { type EventSubscribeResponse (line 4322) | type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscri... FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/valibot/v1/__snapshots__/3.1.x/type-format/sdk.gen.ts type Options (line 11) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/valibot/v1/test/utils.ts function loadGeneratedSchemas (line 43) | function loadGeneratedSchemas(generatedPath: string): any { function setupValibotTest (line 76) | async function setupValibotTest( FILE: packages/openapi-ts-tests/zod/v3/__snapshots__/3.1.x/mini/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v3/__snapshots__/3.1.x/v3/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v3/__snapshots__/3.1.x/v4/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v3/test/3.1.x.test.ts method enum (line 141) | enum(ctx) { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/mini/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v3/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/2.0.x/v4/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/mini/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v3/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.0.x/v4/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/mini/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v3/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/client.gen.ts type CreateClientConfig (line 14) | type CreateClientConfig = (ove... FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/client/client.gen.ts type ReqInit (line 17) | type ReqInit = Omit & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/client/types.gen.ts type ResponseStyle (line 11) | type ResponseStyle = 'data' | 'fields'; type Config (line 13) | interface Config type RequestOptions (line 56) | interface RequestOptions< type ResolvedRequestOptions (line 91) | interface ResolvedRequestOptions< type RequestResult (line 99) | type RequestResult< type ClientOptions (line 134) | interface ClientOptions { type MethodFn (line 140) | type MethodFn = < type SseFn (line 149) | type SseFn = < type RequestFn (line 158) | type RequestFn = < type BuildUrlFn (line 168) | type BuildUrlFn = < type Client (line 179) | type Client = CoreClient... type CreateClientConfig (line 191) | type CreateClientConfig = ( type TDataShape (line 195) | interface TDataShape { type OmitKeys (line 203) | type OmitKeys = Pick>; type Options (line 205) | type Options< FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/client/utils.gen.ts type ErrInterceptor (line 219) | type ErrInterceptor = ( type ReqInterceptor (line 226) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 228) | type ResInterceptor = ( class Interceptors (line 234) | class Interceptors { method clear (line 237) | clear(): void { method eject (line 241) | eject(id: number | Interceptor): void { method exists (line 248) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 253) | getInterceptorIndex(id: number | Interceptor): number { method update (line 260) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 269) | use(fn: Interceptor): number { type Middleware (line 275) | interface Middleware { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/auth.gen.ts type AuthToken (line 3) | type AuthToken = string | undefined; type Auth (line 5) | interface Auth { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/bodySerializer.gen.ts type QuerySerializer (line 5) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 7) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 9) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 15) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/params.gen.ts type Slot (line 3) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 5) | type Field = type Fields (line 38) | interface Fields { type FieldsConfig (line 43) | type FieldsConfig = ReadonlyArray; type KeyMap (line 53) | type KeyMap = Map< type Params (line 90) | interface Params { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/pathSerializer.gen.ts type SerializeOptions (line 3) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 5) | interface SerializePrimitiveOptions { type SerializerOptions (line 10) | interface SerializerOptions { type ArrayStyle (line 18) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 20) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 21) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 24) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/queryKeySerializer.gen.ts type JsonValue (line 6) | type JsonValue = FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/serverSentEvents.gen.ts type ServerSentEventsOptions (line 5) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 74) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 102) | type OmitNever> = { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/core/utils.gen.ts type PathSerializer (line 11) | interface PathSerializer { constant PATH_PARAM_RE (line 16) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 113) | function getValidRequestBody(options: { FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/type-format/sdk.gen.ts type Options (line 9) | type Options = `${T}_${string}`; type UserId (line 9) | type UserId = TypeID<'user'>; type Foo (line 11) | type Foo = { type Bar (line 17) | type Bar = { type PostFooData (line 22) | type PostFooData = { type PostFooResponses (line 29) | type PostFooResponses = { type PostFooResponse (line 36) | type PostFooResponse = PostFooResponses[keyof PostFooResponses]; FILE: packages/openapi-ts-tests/zod/v4/__snapshots__/3.1.x/v4/validators-types/zod.gen.ts type BazZodType (line 7) | type BazZodType = z.infer; type QuxZodType (line 13) | type QuxZodType = z.infer; type FooZodType (line 25) | type FooZodType = z.infer; type BarZodType (line 34) | type BarZodType = z.infer; type FooZodType2 (line 41) | type FooZodType2 = z.infer; type FooZodType3 (line 47) | type FooZodType3 = z.infer; type PatchFooDataZodType (line 65) | type PatchFooDataZodType = z.infer; type PostFooDataZodType (line 73) | type PostFooDataZodType = z.infer; FILE: packages/openapi-ts-tests/zod/v4/test/3.1.x.test.ts method enum (line 166) | enum(ctx) { FILE: packages/openapi-ts/src/__tests__/index.test.ts type Config (line 3) | type Config = Parameters[0]; FILE: packages/openapi-ts/src/cli/adapter.ts function cliToConfig (line 6) | function cliToConfig(cli: CliOptions): Partial { FILE: packages/openapi-ts/src/cli/index.ts function runCli (line 39) | async function runCli(): Promise { FILE: packages/openapi-ts/src/cli/schema.ts type CliOptions (line 6) | interface CliOptions { FILE: packages/openapi-ts/src/config/expand.ts type Job (line 6) | interface Job { function expandToJobs (line 11) | function expandToJobs(configs: ReadonlyArray): ReadonlyArray... FILE: packages/openapi-ts/src/config/init.ts type Configs (line 11) | type Configs = { function resolveJobs (line 23) | async function resolveJobs({ FILE: packages/openapi-ts/src/config/output/config.ts function getOutput (line 17) | function getOutput(userConfig: { output: MaybeArray... function resolveLegacyPostProcess (line 101) | function resolveLegacyPostProcess(config: Partial): Readonly... function normalizePostProcess (line 139) | function normalizePostProcess(input: UserOutput['postProcess']): Readonl... function loadTsConfig (line 157) | function loadTsConfig(configPath: string | null): TsConfigJsonResolved |... FILE: packages/openapi-ts/src/config/output/postprocess.ts type Formatters (line 6) | type Formatters = 'biome' | 'prettier'; type Linters (line 11) | type Linters = 'biome' | 'eslint' | 'oxlint'; type PostProcessorPreset (line 46) | type PostProcessorPreset = keyof typeof postProcessors; FILE: packages/openapi-ts/src/config/output/types.ts type UserOutput (line 7) | type UserOutput = BaseUserOutput<'.js' | '.ts'> & { type Output (line 62) | type Output = BaseOutput<'.js' | '.ts'> & { FILE: packages/openapi-ts/src/config/plugins.ts function getPluginsConfig (line 15) | function getPluginsConfig({ function isPluginClient (line 114) | function isPluginClient(plugin: Required['plugins'][number])... function getPlugins (line 126) | function getPlugins({ FILE: packages/openapi-ts/src/config/resolve.ts type ResolvedJob (line 12) | type ResolvedJob = { function resolveConfig (line 18) | function resolveConfig( FILE: packages/openapi-ts/src/config/types.ts type UserConfig (line 11) | type UserConfig = BaseUserConfig & { type Config (line 29) | type Config = BaseConfig & { FILE: packages/openapi-ts/src/config/utils.ts function getTypedConfig (line 5) | function getTypedConfig( FILE: packages/openapi-ts/src/config/validate.ts type ValidationResult (line 6) | type ValidationResult = { function validateJobs (line 11) | function validateJobs(jobs: ReadonlyArray): ReadonlyArray { FILE: packages/openapi-ts/src/index.ts type ProjectRenderMeta (line 8) | interface ProjectRenderMeta { type SymbolMeta (line 19) | interface SymbolMeta { type PluginConfigMap (line 60) | interface PluginConfigMap { type PluginInstanceTypes (line 90) | interface PluginInstanceTypes { function defineConfig (line 163) | async function defineConfig>( type Types (line 199) | type Types = AngularCommonPlugin; type Types (line 203) | type Types = ArktypePlugin; type Types (line 207) | type Types = FakerJsFakerPlugin; type Resolvers (line 208) | type Resolvers = Required['~resolvers']; type Types (line 212) | type Types = FastifyPlugin; type Client (line 216) | type Client = AngularClientImp; type Types (line 217) | type Types = HeyApiClientAngularPlugin; type Client (line 221) | type Client = AxiosClientImp; type Types (line 222) | type Types = HeyApiClientAxiosPlugin; type Client (line 226) | type Client = FetchClientImp; type Types (line 227) | type Types = HeyApiClientFetchPlugin; type Client (line 231) | type Client = KyClientImp; type Types (line 232) | type Types = HeyApiClientKyPlugin; type Client (line 236) | type Client = NextClientImp; type Types (line 237) | type Types = HeyApiClientNextPlugin; type Client (line 241) | type Client = NuxtClientImp; type Types (line 242) | type Types = HeyApiClientNuxtPlugin; type Client (line 246) | type Client = OfetchClientImp; type Types (line 247) | type Types = HeyApiClientOfetchPlugin; type Types (line 251) | type Types = HeyApiSchemasPlugin; type Types (line 255) | type Types = HeyApiSdkPlugin; type Types (line 259) | type Types = HeyApiTransformersPlugin; type Resolvers (line 263) | type Resolvers = Required['~resolvers']; type Types (line 264) | type Types = HeyApiTypeScriptPlugin; type Types (line 268) | type Types = NestJsPlugin; type Types (line 272) | type Types = OrpcPlugin; type Types (line 276) | type Types = PiniaColadaPlugin; type Types (line 280) | type Types = SwrPlugin; type Types (line 284) | type Types = TanStackAngularQueryPlugin; type Types (line 288) | type Types = TanStackPreactQueryPlugin; type Types (line 292) | type Types = TanStackReactQueryPlugin; type Types (line 296) | type Types = TanStackSolidQueryPlugin; type Types (line 300) | type Types = TanStackSvelteQueryPlugin; type Types (line 304) | type Types = TanStackVueQueryPlugin; type Resolvers (line 308) | type Resolvers = Required['~resolvers']; type Types (line 309) | type Types = ValibotPlugin; type Resolvers (line 313) | type Resolvers = Required['~resolvers']; type Types (line 314) | type Types = ZodPlugin; type AngularClient (line 320) | type AngularClient = AngularClientImp; type AxiosClient (line 322) | type AxiosClient = AxiosClientImp; type FetchClient (line 324) | type FetchClient = FetchClientImp; type KyClient (line 326) | type KyClient = KyClientImp; type NextClient (line 328) | type NextClient = NextClientImp; type NuxtClient (line 330) | type NuxtClient = NuxtClientImp; type OfetchClient (line 332) | type OfetchClient = OfetchClientImp; FILE: packages/openapi-ts/src/plugins/@angular/common/httpRequests/config.ts type Config (line 6) | type Config = Omit; function resolveHttpRequests (line 8) | function resolveHttpRequests(config: Config, context: PluginContext): Ht... FILE: packages/openapi-ts/src/plugins/@angular/common/httpRequests/resolve.ts function resolvePath (line 6) | function resolvePath(plugin: AngularCommonPlugin['Instance']): Operation... function resolveHttpRequestsStrategy (line 21) | function resolveHttpRequestsStrategy( FILE: packages/openapi-ts/src/plugins/@angular/common/httpRequests/types.ts type UserHttpRequestsConfig (line 9) | interface UserHttpRequestsConfig { type HttpRequestsConfig (line 108) | type HttpRequestsConfig = FeatureToggle & { FILE: packages/openapi-ts/src/plugins/@angular/common/httpResources/config.ts type Config (line 6) | type Config = Omit; function resolveHttpResources (line 8) | function resolveHttpResources(config: Config, context: PluginContext): H... FILE: packages/openapi-ts/src/plugins/@angular/common/httpResources/resolve.ts function resolvePath (line 6) | function resolvePath(plugin: AngularCommonPlugin['Instance']): Operation... function resolveHttpResourcesStrategy (line 21) | function resolveHttpResourcesStrategy( FILE: packages/openapi-ts/src/plugins/@angular/common/httpResources/types.ts type UserHttpResourcesConfig (line 9) | interface UserHttpResourcesConfig { type HttpResourcesConfig (line 108) | type HttpResourcesConfig = FeatureToggle & { FILE: packages/openapi-ts/src/plugins/@angular/common/shared/node.ts type OperationItem (line 20) | interface OperationItem { function attachComment (line 26) | function attachComment & type Config (line 24) | type Config = Plugin.Name<'@angular/common'> & type AngularCommonPlugin (line 38) | type AngularCommonPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@faker-js/faker/api.ts type Expression (line 5) | type Expression = ReturnType; type IApi (line 7) | type IApi = { class Api (line 35) | class Api implements IApi { method toNode (line 37) | toNode(_schema: IR.SchemaObject): Expression { method toNodeRef (line 42) | toNodeRef(_schema: IR.SchemaObject): Expression { FILE: packages/openapi-ts/src/plugins/@faker-js/faker/resolvers/types.ts type Expression (line 8) | type Expression = ReturnType; type FakerJsFakerResolvers (line 10) | type FakerJsFakerResolvers = Plugin.Resolvers<{ type BaseContext (line 17) | interface BaseContext extends DollarTsDsl { type ArrayResolverContext (line 24) | interface ArrayResolverContext extends BaseContext { type NumberResolverContext (line 32) | interface NumberResolverContext extends BaseContext { type ObjectResolverContext (line 41) | interface ObjectResolverContext extends BaseContext { type StringResolverContext (line 48) | interface StringResolverContext extends BaseContext { FILE: packages/openapi-ts/src/plugins/@faker-js/faker/types.ts type UserConfig (line 6) | type UserConfig = Plugin.Name<'@faker-js/faker'> & type Config (line 60) | type Config = Plugin.Name<'@faker-js/faker'> & type FakerJsFakerPlugin (line 83) | type FakerJsFakerPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-angular/bundle/client.ts function provideHeyApiClient (line 31) | function provideHeyApiClient(client: Client) { FILE: packages/openapi-ts/src/plugins/@hey-api/client-angular/bundle/types.ts type ResponseStyle (line 18) | type ResponseStyle = 'data' | 'fields'; type Config (line 20) | interface Config type RequestOptions (line 57) | interface RequestOptions< type ResolvedRequestOptions (line 96) | interface ResolvedRequestOptions< type RequestResult (line 104) | type RequestResult< type ClientOptions (line 139) | interface ClientOptions { type MethodFn (line 145) | type MethodFn = < type SseFn (line 154) | type SseFn = < type RequestFn (line 163) | type RequestFn = < type RequestOptionsFn (line 173) | type RequestOptionsFn = < type BuildUrlFn (line 181) | type BuildUrlFn = < type Client (line 192) | type Client = CoreClient... type CreateClientConfig (line 210) | type CreateClientConfig = ( type TDataShape (line 214) | interface TDataShape { type OmitKeys (line 222) | type OmitKeys = Pick>; type Options (line 224) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-angular/bundle/utils.ts type PathSerializer (line 15) | interface PathSerializer { constant PATH_PARAM_RE (line 20) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 22) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 23) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 24) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 313) | type ErrInterceptor = ( type ReqInterceptor (line 320) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 322) | type ResInterceptor = ( class Interceptors (line 328) | class Interceptors { method clear (line 331) | clear(): void { method eject (line 335) | eject(id: number | Interceptor): void { method exists (line 342) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 347) | getInterceptorIndex(id: number | Interceptor): number { method update (line 354) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 363) | use(fn: Interceptor): number { type Middleware (line 369) | interface Middleware { FILE: packages/openapi-ts/src/plugins/@hey-api/client-angular/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-angular'> & type HeyApiClientAngularPlugin (line 15) | type HeyApiClientAngularPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-axios/bundle/types.ts type Config (line 17) | interface Config type RequestOptions (line 50) | interface RequestOptions< type ClientOptions (line 83) | interface ClientOptions { type RequestResult (line 88) | type RequestResult< type MethodFn (line 104) | type MethodFn = ... type CreateClientConfig (line 140) | type CreateClientConfig = ( type TDataShape (line 144) | interface TDataShape { type OmitKeys (line 152) | type OmitKeys = Pick>; type Options (line 154) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-axios/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-axios'> & type HeyApiClientAxiosPlugin (line 15) | type HeyApiClientAxiosPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/__tests__/serverSentEvents.test.ts function makeStream (line 3) | function makeStream(chunks: string[]) { function toRequest (line 17) | function toRequest(input: RequestInfo, init?: RequestInit): Request { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/auth.ts type AuthToken (line 1) | type AuthToken = string | undefined; type Auth (line 3) | interface Auth { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/bodySerializer.ts type QuerySerializer (line 3) | type QuerySerializer = (query: Record) => string; type BodySerializer (line 5) | type BodySerializer = (body: unknown) => unknown; type QuerySerializerOptionsObject (line 7) | type QuerySerializerOptionsObject = { type QuerySerializerOptions (line 13) | type QuerySerializerOptions = QuerySerializerOptionsObject & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/params.ts type Slot (line 1) | type Slot = 'body' | 'headers' | 'path' | 'query'; type Field (line 3) | type Field = type Fields (line 36) | interface Fields { type FieldsConfig (line 41) | type FieldsConfig = ReadonlyArray; type KeyMap (line 51) | type KeyMap = Map< type Params (line 88) | interface Params { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/pathSerializer.ts type SerializeOptions (line 1) | interface SerializeOptions extends SerializePrimitiveOptions, Seriali... type SerializePrimitiveOptions (line 3) | interface SerializePrimitiveOptions { type SerializerOptions (line 8) | interface SerializerOptions { type ArrayStyle (line 16) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type ArraySeparatorStyle (line 17) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type MatrixStyle (line 18) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectStyle (line 19) | type ObjectStyle = 'form' | 'deepObject'; type ObjectSeparatorStyle (line 20) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type SerializePrimitiveParam (line 22) | interface SerializePrimitiveParam extends SerializePrimitiveOptions { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/queryKeySerializer.ts type JsonValue (line 4) | type JsonValue = FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/serverSentEvents.ts type ServerSentEventsOptions (line 3) | type ServerSentEventsOptions = Omit { type ServerSentEventsResult (line 72) | type ServerSentEventsResult = [T] extends [never] type OmitNever (line 100) | type OmitNever> = { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/bundle/utils.ts type PathSerializer (line 9) | interface PathSerializer { constant PATH_PARAM_RE (line 14) | const PATH_PARAM_RE = /\{[^{}]+\}/g; function getValidRequestBody (line 111) | function getValidRequestBody(options: { FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/types.ts type PluginHandler (line 11) | interface PluginHandler { type Config (line 24) | type Config = Plugin.Hooks & FILE: packages/openapi-ts/src/plugins/@hey-api/client-core/utils.ts function getClientBaseUrlKey (line 4) | function getClientBaseUrlKey(config: Config) { function getClientPlugin (line 12) | function getClientPlugin( FILE: packages/openapi-ts/src/plugins/@hey-api/client-fetch/__tests__/client.test.ts type MockFetch (line 4) | type MockFetch = ((...args: any[]) => any) & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-fetch/bundle/client.ts type ReqInit (line 15) | type ReqInit = Omit & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-fetch/bundle/types.ts type ResponseStyle (line 9) | type ResponseStyle = 'data' | 'fields'; type Config (line 11) | interface Config type RequestOptions (line 54) | interface RequestOptions< type ResolvedRequestOptions (line 89) | interface ResolvedRequestOptions< type RequestResult (line 97) | type RequestResult< type ClientOptions (line 132) | interface ClientOptions { type MethodFn (line 138) | type MethodFn = < type SseFn (line 147) | type SseFn = < type RequestFn (line 156) | type RequestFn = < type BuildUrlFn (line 166) | type BuildUrlFn = < type Client (line 177) | type Client = CoreClient... type CreateClientConfig (line 189) | type CreateClientConfig = ( type TDataShape (line 193) | interface TDataShape { type OmitKeys (line 201) | type OmitKeys = Pick>; type Options (line 203) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-fetch/bundle/utils.ts type ErrInterceptor (line 217) | type ErrInterceptor = ( type ReqInterceptor (line 224) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 226) | type ResInterceptor = ( class Interceptors (line 232) | class Interceptors { method clear (line 235) | clear(): void { method eject (line 239) | eject(id: number | Interceptor): void { method exists (line 246) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 251) | getInterceptorIndex(id: number | Interceptor): number { method update (line 258) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 267) | use(fn: Interceptor): number { type Middleware (line 273) | interface Middleware { FILE: packages/openapi-ts/src/plugins/@hey-api/client-fetch/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-fetch'> & type HeyApiClientFetchPlugin (line 15) | type HeyApiClientFetchPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-ky/bundle/types.ts type ResponseStyle (line 12) | type ResponseStyle = 'data' | 'fields'; type RetryOptions (line 14) | interface RetryOptions { type Config (line 35) | interface Config type RequestOptions (line 86) | interface RequestOptions< type ResolvedRequestOptions (line 121) | interface ResolvedRequestOptions< type RequestResult (line 129) | type RequestResult< type ClientOptions (line 164) | interface ClientOptions { type MethodFn (line 170) | type MethodFn = < type SseFn (line 179) | type SseFn = < type RequestFn (line 188) | type RequestFn = < type BuildUrlFn (line 198) | type BuildUrlFn = < type Client (line 209) | type Client = CoreClient... type CreateClientConfig (line 221) | type CreateClientConfig = ( type TDataShape (line 225) | interface TDataShape { type OmitKeys (line 233) | type OmitKeys = Pick>; type Options (line 235) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-ky/bundle/utils.ts type ErrInterceptor (line 213) | type ErrInterceptor = ( type ReqInterceptor (line 220) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 222) | type ResInterceptor = ( class Interceptors (line 228) | class Interceptors { method clear (line 231) | clear(): void { method eject (line 235) | eject(id: number | Interceptor): void { method exists (line 242) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 247) | getInterceptorIndex(id: number | Interceptor): number { method update (line 254) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 263) | use(fn: Interceptor): number { type Middleware (line 269) | interface Middleware { FILE: packages/openapi-ts/src/plugins/@hey-api/client-ky/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-ky'> & type HeyApiClientKyPlugin (line 15) | type HeyApiClientKyPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-next/__tests__/client.test.ts type MockFetch (line 4) | type MockFetch = ((...args: any[]) => any) & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-next/bundle/client.ts type ReqInit (line 15) | type ReqInit = Omit & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-next/bundle/types.ts type Config (line 9) | interface Config type RequestOptions (line 39) | interface RequestOptions< type ResolvedRequestOptions (line 72) | interface ResolvedRequestOptions< type RequestResult (line 79) | type RequestResult< type ClientOptions (line 103) | interface ClientOptions { type MethodFn (line 108) | type MethodFn = ... type CreateClientConfig (line 144) | type CreateClientConfig = ( type TDataShape (line 148) | interface TDataShape { type OmitKeys (line 156) | type OmitKeys = Pick>; type Options (line 158) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-next/bundle/utils.ts type PathSerializer (line 14) | interface PathSerializer { constant PATH_PARAM_RE (line 19) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type ArrayStyle (line 21) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 22) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ArraySeparatorStyle (line 23) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ErrInterceptor (line 326) | type ErrInterceptor = ( type ReqInterceptor (line 332) | type ReqInterceptor = (options: Options) => void | Promise; type ResInterceptor (line 334) | type ResInterceptor = (response: Res, options: Options) =>... class Interceptors (line 336) | class Interceptors { method clear (line 339) | clear(): void { method eject (line 343) | eject(id: number | Interceptor): void { method exists (line 350) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 355) | getInterceptorIndex(id: number | Interceptor): number { method update (line 362) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 371) | use(fn: Interceptor): number { type Middleware (line 377) | interface Middleware { FILE: packages/openapi-ts/src/plugins/@hey-api/client-next/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-next'> & type HeyApiClientNextPlugin (line 15) | type HeyApiClientNextPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-nuxt/bundle/types.ts type ArraySeparatorStyle (line 19) | type ArraySeparatorStyle = ArrayStyle | MatrixStyle; type ArrayStyle (line 20) | type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; type MatrixStyle (line 21) | type MatrixStyle = 'label' | 'matrix' | 'simple'; type ObjectSeparatorStyle (line 22) | type ObjectSeparatorStyle = ObjectStyle | MatrixStyle; type ObjectStyle (line 23) | type ObjectStyle = 'form' | 'deepObject'; type QuerySerializer (line 25) | type QuerySerializer = (query: Parameters[0]['query'... type WithRefs (line 27) | type WithRefs = { type KeysOf (line 34) | type KeysOf = Array type RequestOptions (line 55) | interface RequestOptions< type RequestResult (line 92) | type RequestResult< type ClientOptions (line 108) | interface ClientOptions { type MethodFn (line 112) | type MethodFn = < type SseFn (line 121) | type SseFn = < type RequestFn (line 130) | type RequestFn = < type CreateClientConfig (line 148) | type CreateClientConfig = ( type TDataShape (line 152) | interface TDataShape { type BuildUrlOptions (line 160) | type BuildUrlOptions< type BuildUrlFn (line 166) | type BuildUrlFn = >( type Client (line 170) | type Client = CoreClient; type OmitKeys (line 172) | type OmitKeys = Pick>; type Options (line 174) | type Options< type FetchOptions (line 182) | type FetchOptions = Omit, keyof Asy... type Composable (line 184) | type Composable = FILE: packages/openapi-ts/src/plugins/@hey-api/client-nuxt/bundle/utils.ts type PathSerializer (line 22) | type PathSerializer = Pick, 'path' | 'url'>; constant PATH_PARAM_RE (line 24) | const PATH_PARAM_RE = /\{[^{}]+\}/g; type MaybeArray (line 26) | type MaybeArray = T | T[]; type UnwrapRefs (line 333) | type UnwrapRefs = FILE: packages/openapi-ts/src/plugins/@hey-api/client-nuxt/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-nuxt'> & Client.Config; type HeyApiClientNuxtPlugin (line 7) | type HeyApiClientNuxtPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/client-ofetch/__tests__/client.test.ts type MockOfetch (line 4) | type MockOfetch = ((...args: any[]) => any) & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-ofetch/bundle/client.ts type ReqInit (line 23) | type ReqInit = Omit & { FILE: packages/openapi-ts/src/plugins/@hey-api/client-ofetch/bundle/types.ts type ResponseStyle (line 12) | type ResponseStyle = 'data' | 'fields'; type Config (line 14) | interface Config type RequestOptions (line 118) | interface RequestOptions< type ResolvedRequestOptions (line 152) | interface ResolvedRequestOptions< type RequestResult (line 160) | type RequestResult< type ClientOptions (line 195) | interface ClientOptions { type MethodFn (line 201) | type MethodFn = < type SseFn (line 210) | type SseFn = < type RequestFn (line 219) | type RequestFn = < type BuildUrlFn (line 229) | type BuildUrlFn = < type Client (line 240) | type Client = CoreClient... type CreateClientConfig (line 252) | type CreateClientConfig = ( type TDataShape (line 256) | interface TDataShape { type OmitKeys (line 264) | type OmitKeys = Pick>; type Options (line 266) | type Options< FILE: packages/openapi-ts/src/plugins/@hey-api/client-ofetch/bundle/utils.ts type ErrInterceptor (line 406) | type ErrInterceptor = ( type ReqInterceptor (line 413) | type ReqInterceptor = (request: Req, options: Options) => ... type ResInterceptor (line 415) | type ResInterceptor = ( class Interceptors (line 421) | class Interceptors { method clear (line 424) | clear(): void { method eject (line 428) | eject(id: number | Interceptor): void { method exists (line 435) | exists(id: number | Interceptor): boolean { method getInterceptorIndex (line 440) | getInterceptorIndex(id: number | Interceptor): number { method update (line 447) | update(id: number | Interceptor, fn: Interceptor): number | Intercepto... method use (line 456) | use(fn: Interceptor): number { type Middleware (line 462) | interface Middleware { FILE: packages/openapi-ts/src/plugins/@hey-api/client-ofetch/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@hey-api/client-ofetch'> & type HeyApiClientOfetchPlugin (line 15) | type HeyApiClientOfetchPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/schemas/types.ts type UserConfig (line 9) | type UserConfig = Plugin.Name<'@hey-api/schemas'> & type HeyApiSchemasPlugin (line 39) | type HeyApiSchemasPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/examples/config.ts type Config (line 6) | type Config = Omit; function resolveExamples (line 8) | function resolveExamples(config: Config, context: PluginContext): Exampl... FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/examples/types.ts type UserExamplesConfig (line 6) | type UserExamplesConfig = Omit & { type ExamplesConfig (line 38) | type ExamplesConfig = Omit & FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/operations/config.ts type Config (line 7) | type Config = Omit; function resolveOperations (line 9) | function resolveOperations(config: Config, context: PluginContext): Oper... function normalizeConfig (line 62) | function normalizeConfig( function mapLegacyToConfig (line 122) | function mapLegacyToConfig(config: Config): Partial { FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/operations/resolve.ts function resolvePath (line 6) | function resolvePath(plugin: HeyApiSdkPlugin['Instance']): OperationPath... function resolveStrategy (line 21) | function resolveStrategy(plugin: HeyApiSdkPlugin['Instance']): Operation... FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/operations/types.ts type UserOperationsConfig (line 8) | interface UserOperationsConfig { type OperationsConfig (line 104) | interface OperationsConfig { FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/shared/operation.ts type OperationParameters (line 72) | type OperationParameters = { function operationParameters (line 78) | function operationParameters({ function operationStatements (line 187) | function operationStatements({ FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/shared/signature.ts type Location (line 6) | type Location = keyof IR.ParametersObject | 'body'; type SignatureParameter (line 8) | type SignatureParameter = { type SignatureParameters (line 27) | type SignatureParameters = Record; type Signature (line 29) | type Signature = { function getSignatureParameters (line 39) | function getSignatureParameters({ FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/shared/validator.ts type ValidatorProps (line 6) | interface ValidatorProps { FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/types.ts type UserConfig (line 7) | type UserConfig = Plugin.Name<'@hey-api/sdk'> & type Config (line 194) | type Config = Plugin.Name<'@hey-api/sdk'> & type HeyApiSdkPlugin (line 286) | type HeyApiSdkPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/sdk/v1/node.ts type OperationItem (line 23) | interface OperationItem { function isInstance (line 31) | function isInstance(plugin: HeyApiSdkPlugin['Instance']): boolean { function attachComment (line 38) | function attachComment; function isNodeReturnStatement (line 17) | function isNodeReturnStatement(node: Expr) { function schemaResponseTransformerNodes (line 21) | function schemaResponseTransformerNodes({ function processSchemaType (line 43) | function processSchemaType({ FILE: packages/openapi-ts/src/plugins/@hey-api/transformers/types.ts type BaseTransformer (line 7) | interface BaseTransformer extends DollarTsDsl { type ExpressionTransformer (line 12) | type ExpressionTransformer = ( type TypeTransformer (line 24) | type TypeTransformer = (ctx: BaseTransformer) => MaybeTsDsl... type UserConfig (line 26) | type UserConfig = Plugin.Name<'@hey-api/transformers'> & type Config (line 51) | type Config = Plugin.Name<'@hey-api/transformers'> & type HeyApiTransformersPlugin (line 76) | type HeyApiTransformersPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/api.ts type IApi (line 8) | type IApi = { class Api (line 12) | class Api implements IApi { method schemaToType (line 13) | schemaToType(plugin: HeyApiTypeScriptPlugin['Instance'], schema: IR.Sc... FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/resolvers.ts type HeyApiTypeScriptResolvers (line 7) | type HeyApiTypeScriptResolvers = Plugin.Resolvers<{ type BaseContext (line 122) | interface BaseContext extends DollarTsDsl { type ArrayResolverContext (line 127) | interface ArrayResolverContext extends BaseContext { type BooleanResolverContext (line 142) | interface BooleanResolverContext extends BaseContext { type EnumResolverContext (line 159) | interface EnumResolverContext extends BaseContext { type IntersectionResolverContext (line 185) | interface IntersectionResolverContext extends BaseContext { type NeverResolverContext (line 209) | interface NeverResolverContext extends BaseContext { type NullResolverContext (line 222) | interface NullResolverContext extends BaseContext { type NumberResolverContext (line 235) | interface NumberResolverContext extends BaseContext { type ObjectResolverContext (line 252) | interface ObjectResolverContext extends BaseContext { type StringResolverContext (line 271) | interface StringResolverContext extends BaseContext { type TupleResolverContext (line 292) | interface TupleResolverContext extends BaseContext { type UnionResolverContext (line 311) | interface UnionResolverContext extends BaseContext { type UndefinedResolverContext (line 335) | interface UndefinedResolverContext extends BaseContext { type UnknownResolverContext (line 348) | interface UnknownResolverContext extends BaseContext { type VoidResolverContext (line 361) | interface VoidResolverContext extends BaseContext { FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/shared/export.ts function resolveEnumKey (line 11) | function resolveEnumKey({ function buildEnumExport (line 53) | function buildEnumExport({ function exportAst (line 196) | function exportAst({ FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/shared/meta.ts function defaultMeta (line 8) | function defaultMeta(schema: IR.SchemaObject): TypeScriptMeta { function composeMeta (line 21) | function composeMeta( function inheritMeta (line 37) | function inheritMeta( FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/shared/processor.ts type ProcessorContext (line 6) | type ProcessorContext = SchemaProcessorContext & { type ProcessorResult (line 15) | type ProcessorResult = { FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/shared/types.ts type Type (line 5) | type Type = MaybeTsDsl; type TypeScriptMeta (line 10) | interface TypeScriptMeta { type TypeScriptEnumData (line 17) | interface TypeScriptEnumData { type TypeScriptResult (line 25) | interface TypeScriptResult { type TypeScriptFinal (line 35) | interface TypeScriptFinal extends Pick & type Config (line 234) | type Config = Plugin.Name<'@hey-api/typescript'> & type HeyApiTypeScriptPlugin (line 336) | type HeyApiTypeScriptPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/v1/processor.ts function createProcessor (line 11) | function createProcessor(plugin: HeyApiTypeScriptPlugin['Instance']): Pr... FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/v1/toAst/array.ts function baseNode (line 10) | function baseNode(ctx: ArrayResolverContext): Type { function arrayResolver (line 37) | function arrayResolver(ctx: ArrayResolverContext): Type { function arrayToAst (line 41) | function arrayToAst({ FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/v1/toAst/boolean.ts function baseNode (line 8) | function baseNode(): Type { function constNode (line 12) | function constNode(ctx: BooleanResolverContext): Type | undefined { function booleanResolver (line 19) | function booleanResolver(ctx: BooleanResolverContext): Type { function booleanToAst (line 26) | function booleanToAst({ FILE: packages/openapi-ts/src/plugins/@hey-api/typescript/v1/toAst/enum.ts function buildEnumData (line 9) | function buildEnumData( function itemsNode (line 40) | function itemsNode(ctx: EnumResolverContext): ReturnType & type Config (line 175) | type Config = Plugin.Name<'@pinia/colada'> & type PiniaColadaPlugin (line 260) | type PiniaColadaPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/angular-query-experimental/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@tanstack/angular-query-experimental'> & type Config (line 289) | type Config = Plugin.Name<'@tanstack/angular-query-experimental'> & type TanStackAngularQueryPlugin (line 431) | type TanStackAngularQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/preact-query/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@tanstack/preact-query'> & type Config (line 371) | type Config = Plugin.Name<'@tanstack/preact-query'> & type TanStackPreactQueryPlugin (line 528) | type TanStackPreactQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/query-core/types.ts type PluginHandler (line 8) | interface PluginHandler { type PluginInstance (line 17) | type PluginInstance = FILE: packages/openapi-ts/src/plugins/@tanstack/react-query/types.ts type UserConfig (line 5) | type UserConfig = Plugin.Name<'@tanstack/react-query'> & type Config (line 371) | type Config = Plugin.Name<'@tanstack/react-query'> & type TanStackReactQueryPlugin (line 528) | type TanStackReactQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/solid-query/types.ts type UserConfig (line 11) | type UserConfig = Plugin.Name<'@tanstack/solid-query'> & type Config (line 296) | type Config = Plugin.Name<'@tanstack/solid-query'> & type TanStackSolidQueryPlugin (line 438) | type TanStackSolidQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/svelte-query/types.ts type UserConfig (line 11) | type UserConfig = Plugin.Name<'@tanstack/svelte-query'> & type Config (line 295) | type Config = Plugin.Name<'@tanstack/svelte-query'> & type TanStackSvelteQueryPlugin (line 437) | type TanStackSvelteQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/@tanstack/vue-query/types.ts type UserConfig (line 11) | type UserConfig = Plugin.Name<'@tanstack/vue-query'> & type Config (line 298) | type Config = Plugin.Name<'@tanstack/vue-query'> & type TanStackVueQueryPlugin (line 443) | type TanStackVueQueryPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/arktype/api.ts type IApi (line 5) | type IApi = { class Api (line 10) | class Api implements IApi { method createRequestValidator (line 11) | createRequestValidator(args: ValidatorArgs): ReturnType... method createResponseValidator (line 15) | createResponseValidator(args: ValidatorArgs): ReturnType, 'path'> & type ValidatorArgs (line 29) | type ValidatorArgs = { FILE: packages/openapi-ts/src/plugins/arktype/types.ts type UserConfig (line 12) | type UserConfig = Plugin.Name<'arktype'> & type Config (line 367) | type Config = Plugin.Name<'arktype'> & type ArktypePlugin (line 480) | type ArktypePlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/arktype/v2/plugin.ts function irSchemaToAst (line 12) | function irSchemaToAst({ function handleComponent (line 244) | function handleComponent({ FILE: packages/openapi-ts/src/plugins/arktype/v2/toAst/index.ts function irSchemaWithTypeToAst (line 18) | function irSchemaWithTypeToAst({ FILE: packages/openapi-ts/src/plugins/arktype/v2/toAst/object.ts function objectToAst (line 9) | function objectToAst({ FILE: packages/openapi-ts/src/plugins/fastify/types.ts type UserConfig (line 3) | type UserConfig = Plugin.Name<'fastify'> & Plugin.Hooks & Plugin.UserExp... type FastifyPlugin (line 5) | type FastifyPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/nestjs/types.ts type UserConfig (line 3) | type UserConfig = Plugin.Name<'nestjs'> & Plugin.Hooks & Plugin.UserExpo... type NestJsPlugin (line 5) | type NestJsPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/orpc/contracts/config.ts type Config (line 6) | type Config = Omit; function resolveContracts (line 8) | function resolveContracts(config: Config, context: PluginContext): Contr... function normalizeConfig (line 12) | function normalizeConfig(input: Config['contracts'], context: PluginCont... FILE: packages/openapi-ts/src/plugins/orpc/contracts/node.ts type ContractItem (line 16) | interface ContractItem { function createShellMeta (line 24) | function createShellMeta(node: StructureNode): SymbolMeta { function createContractSymbol (line 33) | function createContractSymbol( function createContractExpression (line 52) | function createContractExpression( function buildContainerObject (line 106) | function buildContainerObject( function createShell (line 136) | function createShell(plugin: OrpcPlugin['Instance']): StructureShell { function toNode (line 164) | function toNode( FILE: packages/openapi-ts/src/plugins/orpc/contracts/resolve.ts function resolvePath (line 6) | function resolvePath(plugin: OrpcPlugin['Instance']): OperationPathStrat... function resolveStrategy (line 21) | function resolveStrategy(plugin: OrpcPlugin['Instance']): OperationStruc... FILE: packages/openapi-ts/src/plugins/orpc/contracts/types.ts type UserContractsConfig (line 8) | interface UserContractsConfig { type ContractsConfig (line 91) | interface ContractsConfig { FILE: packages/openapi-ts/src/plugins/orpc/shared/operation.ts function hasInput (line 3) | function hasInput(operation: IR.OperationObject): boolean { function getSuccessResponse (line 17) | function getSuccessResponse( function getTags (line 36) | function getTags(operation: IR.OperationObject, defaultTag: string): Rea... FILE: packages/openapi-ts/src/plugins/orpc/types.ts type UserConfig (line 6) | type UserConfig = Plugin.Name<'orpc'> & type Config (line 53) | type Config = Plugin.Name<'orpc'> & type OrpcPlugin (line 67) | type OrpcPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/shared/utils/coerce.ts type MaybeBigInt (line 3) | type MaybeBigInt = ( type ShouldCoerceToBigInt (line 7) | type ShouldCoerceToBigInt = (format: string | undefined) => boolean; FILE: packages/openapi-ts/src/plugins/shared/utils/formats.ts type Range (line 1) | type Range = number | string; type IntegerLimit (line 3) | interface IntegerLimit { type GetIntegerLimit (line 10) | type GetIntegerLimit = (format: string | undefined) => IntegerLimit | un... FILE: packages/openapi-ts/src/plugins/shared/utils/operation.ts function createOperationComment (line 9) | function createOperationComment( function isOperationOptionsRequired (line 42) | function isOperationOptionsRequired({ function hasOperationSse (line 64) | function hasOperationSse({ operation }: { operation: IR.OperationObject ... FILE: packages/openapi-ts/src/plugins/swr/types.ts type UserConfig (line 11) | type UserConfig = Plugin.Name<'swr'> & type Config (line 334) | type Config = Plugin.Name<'swr'> & type SwrPlugin (line 479) | type SwrPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/types.ts type PluginClientNames (line 1) | type PluginClientNames = type PluginMockNames (line 10) | type PluginMockNames = '@faker-js/faker'; type PluginTransformerNames (line 12) | type PluginTransformerNames = '@hey-api/transformers'; type PluginValidatorNames (line 14) | type PluginValidatorNames = 'arktype' | 'valibot' | 'zod'; FILE: packages/openapi-ts/src/plugins/valibot/api.ts type IApi (line 5) | type IApi = { class Api (line 10) | class Api implements IApi { method createRequestValidator (line 11) | createRequestValidator(args: ValidatorArgs): ReturnType... method createResponseValidator (line 15) | createResponseValidator(args: ValidatorArgs): ReturnType PipeResult |... type BaseContext (line 153) | interface BaseContext extends DollarTsDsl { type ArrayResolverContext (line 179) | interface ArrayResolverContext extends BaseContext { type BooleanResolverContext (line 195) | interface BooleanResolverContext extends BaseContext { type EnumResolverContext (line 206) | interface EnumResolverContext extends BaseContext { type IntersectionResolverContext (line 232) | interface IntersectionResolverContext extends BaseContext { type NeverResolverContext (line 245) | interface NeverResolverContext extends BaseContext { type NullResolverContext (line 255) | interface NullResolverContext extends BaseContext { type NumberResolverContext (line 265) | interface NumberResolverContext extends BaseContext { type ObjectResolverContext (line 286) | interface ObjectResolverContext extends BaseContext { type StringResolverContext (line 302) | interface StringResolverContext extends BaseContext { type TupleResolverContext (line 318) | interface TupleResolverContext extends BaseContext { type UndefinedResolverContext (line 332) | interface UndefinedResolverContext extends BaseContext { type UnionResolverContext (line 342) | interface UnionResolverContext extends BaseContext { type UnknownResolverContext (line 356) | interface UnknownResolverContext extends BaseContext { type ValidatorResolverContext (line 366) | interface ValidatorResolverContext extends BaseContext { type VoidResolverContext (line 376) | interface VoidResolverContext extends BaseContext { FILE: packages/openapi-ts/src/plugins/valibot/shared/export.ts function exportAst (line 9) | function exportAst({ FILE: packages/openapi-ts/src/plugins/valibot/shared/meta.ts function defaultMeta (line 8) | function defaultMeta(schema: IR.SchemaObject): ValibotMeta { function composeMeta (line 24) | function composeMeta( function inheritMeta (line 43) | function inheritMeta( FILE: packages/openapi-ts/src/plugins/valibot/shared/operation-schema.ts type OperationSchemaResult (line 3) | interface OperationSchemaResult { function buildOperationSchema (line 8) | function buildOperationSchema(operation: IR.OperationObject): OperationS... FILE: packages/openapi-ts/src/plugins/valibot/shared/operation.ts function irOperationToAst (line 7) | function irOperationToAst({ FILE: packages/openapi-ts/src/plugins/valibot/shared/pipes.ts type Pipe (line 5) | type Pipe = ReturnType; type Pipes (line 6) | type Pipes = Array; type PipeResult (line 7) | type PipeResult = Pipes | Pipe | undefined; type PipesUtils (line 9) | interface PipesUtils { function push (line 22) | function push(target: Pipes, result: PipeResult): Pipes { function toNode (line 34) | function toNode(pipes: Pipes | Pipe, plugin: ValibotPlugin['Instance']):... function pipesToNode (line 64) | function pipesToNode(pipes: Pipes | Pipe, plugin: ValibotPlugin['Instanc... FILE: packages/openapi-ts/src/plugins/valibot/shared/processor.ts type ProcessorContext (line 6) | type ProcessorContext = SchemaProcessorContext & { type ProcessorResult (line 15) | type ProcessorResult = { FILE: packages/openapi-ts/src/plugins/valibot/shared/types.ts type ValidatorArgs (line 7) | type ValidatorArgs = { type ValibotMeta (line 16) | interface ValibotMeta { type ValibotResult (line 32) | interface ValibotResult { type ValibotFinal (line 40) | interface ValibotFinal extends Pick { type CompositeHandlerResult (line 48) | interface CompositeHandlerResult { FILE: packages/openapi-ts/src/plugins/valibot/shared/webhook.ts function irWebhookToAst (line 6) | function irWebhookToAst({ FILE: packages/openapi-ts/src/plugins/valibot/types.ts type UserConfig (line 15) | type UserConfig = Plugin.Name<'valibot'> & type Config (line 192) | type Config = Plugin.Name<'valibot'> & type ValibotPlugin (line 215) | type ValibotPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/valibot/v1/processor.ts function createProcessor (line 11) | function createProcessor(plugin: ValibotPlugin['Instance']): ProcessorRe... FILE: packages/openapi-ts/src/plugins/valibot/v1/toAst/array.ts type ArrayToPipesContext (line 13) | interface ArrayToPipesContext { function baseNode (line 21) | function baseNode(ctx: ArrayResolverContext): PipeResult { function lengthNode (line 53) | function lengthNode(ctx: ArrayResolverContext): PipeResult { function maxLengthNode (line 61) | function maxLengthNode(ctx: ArrayResolverContext): PipeResult { function minLengthNode (line 68) | function minLengthNode(ctx: ArrayResolverContext): PipeResult { function arrayResolver (line 75) | function arrayResolver(ctx: ArrayResolverContext): Pipes { function arrayToPipes (line 99) | function arrayToPipes(ctx: ArrayToPipesContext): CompositeHandlerResult { FILE: packages/openapi-ts/src/plugins/valibot/v1/toAst/boolean.ts function baseNode (line 10) | function baseNode(ctx: BooleanResolverContext): PipeResult { function constNode (line 16) | function constNode(ctx: BooleanResolverContext): PipeResult { function booleanResolver (line 23) | function booleanResolver(ctx: BooleanResolverContext): Pipes { function booleanToPipes (line 37) | function booleanToPipes({ FILE: packages/openapi-ts/src/plugins/valibot/v1/toAst/enum.ts function itemsNode (line 11) | function itemsNode(ctx: EnumResolverContext): ReturnType... method createResponseValidator (line 26) | createResponseValidator(args: ValidatorArgs): ReturnType; type ObjectToAstOptions (line 13) | interface ObjectToAstOptions { type ExtendedContext (line 21) | type ExtendedContext = ObjectResolverContext & { function additionalPropertiesNode (line 27) | function additionalPropertiesNode(ctx: ExtendedContext): Chain | null | ... function baseNode (line 46) | function baseNode(ctx: ExtendedContext): Chain { function objectResolver (line 60) | function objectResolver(ctx: ExtendedContext): Chain { function shapeNode (line 64) | function shapeNode(ctx: ExtendedContext): ReturnType { function objectToAst (line 85) | function objectToAst(options: ObjectToAstOptions): CompositeHandlerResult { FILE: packages/openapi-ts/src/plugins/zod/mini/toAst/string.ts function baseNode (line 9) | function baseNode(ctx: StringResolverContext): Chain { function constNode (line 14) | function constNode(ctx: StringResolverContext): ChainResult { function formatNode (line 21) | function formatNode(ctx: StringResolverContext): ChainResult { function lengthNode (line 56) | function lengthNode(ctx: StringResolverContext): ChainResult { function maxLengthNode (line 63) | function maxLengthNode(ctx: StringResolverContext): ChainResult { function minLengthNode (line 70) | function minLengthNode(ctx: StringResolverContext): ChainResult { function patternNode (line 77) | function patternNode(ctx: StringResolverContext): ChainResult { function stringResolver (line 85) | function stringResolver(ctx: StringResolverContext): Chain { function stringToNode (line 121) | function stringToNode({ FILE: packages/openapi-ts/src/plugins/zod/mini/toAst/tuple.ts type TupleToAstOptions (line 9) | type TupleToAstOptions = Pick< function baseNode (line 14) | function baseNode(ctx: TupleResolverContext): Chain { function constNode (line 31) | function constNode(ctx: TupleResolverContext): ChainResult { function tupleResolver (line 46) | function tupleResolver(ctx: TupleResolverContext): Chain { function tupleToAst (line 59) | function tupleToAst({ FILE: packages/openapi-ts/src/plugins/zod/mini/toAst/undefined.ts function baseNode (line 9) | function baseNode(ctx: UndefinedResolverContext): Chain { function undefinedResolver (line 15) | function undefinedResolver(ctx: UndefinedResolverContext): Chain { function undefinedToAst (line 21) | function undefinedToAst({ FILE: packages/openapi-ts/src/plugins/zod/mini/toAst/unknown.ts function baseNode (line 9) | function baseNode(ctx: UnknownResolverContext): Chain { function unknownResolver (line 15) | function unknownResolver(ctx: UnknownResolverContext): Chain { function unknownToAst (line 21) | function unknownToAst({ FILE: packages/openapi-ts/src/plugins/zod/mini/toAst/void.ts function baseNode (line 9) | function baseNode(ctx: VoidResolverContext): Chain { function voidResolver (line 15) | function voidResolver(ctx: VoidResolverContext): Chain { function voidToAst (line 21) | function voidToAst({ FILE: packages/openapi-ts/src/plugins/zod/mini/walker.ts type VisitorConfig (line 27) | interface VisitorConfig { function createVisitor (line 32) | function createVisitor( FILE: packages/openapi-ts/src/plugins/zod/resolvers.ts type ZodResolvers (line 13) | type ZodResolvers = Plugin.Resolvers<{ type ValidatorResolver (line 153) | type ValidatorResolver = ( type BaseContext (line 157) | interface BaseContext extends DollarTsDsl { type ArrayResolverContext (line 183) | interface ArrayResolverContext extends BaseContext { type BooleanResolverContext (line 215) | interface BooleanResolverContext extends BaseContext { type EnumResolverContext (line 232) | interface EnumResolverContext extends BaseContext { type IntersectionResolverContext (line 266) | interface IntersectionResolverContext extends BaseContext { type NeverResolverContext (line 283) | interface NeverResolverContext extends BaseContext { type NullResolverContext (line 296) | interface NullResolverContext extends BaseContext { type NumberResolverContext (line 309) | interface NumberResolverContext extends BaseContext { type ObjectResolverContext (line 342) | interface ObjectResolverContext extends BaseContext { type StringResolverContext (line 371) | interface StringResolverContext extends BaseContext { type TupleResolverContext (line 408) | interface TupleResolverContext extends BaseContext { type UndefinedResolverContext (line 429) | interface UndefinedResolverContext extends BaseContext { type UnionResolverContext (line 442) | interface UnionResolverContext extends BaseContext { type UnknownResolverContext (line 460) | interface UnknownResolverContext extends BaseContext { type ValidatorResolverContext (line 473) | interface ValidatorResolverContext extends BaseContext { type VoidResolverContext (line 483) | interface VoidResolverContext extends BaseContext { FILE: packages/openapi-ts/src/plugins/zod/shared/chain.ts type Chain (line 3) | type Chain = ReturnType; type ChainResult (line 4) | type ChainResult = Chain | undefined; FILE: packages/openapi-ts/src/plugins/zod/shared/export.ts function exportAst (line 9) | function exportAst({ FILE: packages/openapi-ts/src/plugins/zod/shared/meta.ts function defaultMeta (line 8) | function defaultMeta(schema: IR.SchemaObject): ZodMeta { function composeMeta (line 26) | function composeMeta( function inheritMeta (line 47) | function inheritMeta(parent: IR.SchemaObject, children: ReadonlyArray { type CompositeHandlerResult (line 58) | interface CompositeHandlerResult extends Pick { FILE: packages/openapi-ts/src/plugins/zod/shared/webhook.ts function irWebhookToAst (line 6) | function irWebhookToAst({ FILE: packages/openapi-ts/src/plugins/zod/types.ts type UserConfig (line 16) | type UserConfig = Plugin.Name<'zod'> & type Config (line 425) | type Config = Plugin.Name<'zod'> & type ZodPlugin (line 465) | type ZodPlugin = DefinePlugin; FILE: packages/openapi-ts/src/plugins/zod/v3/processor.ts function createProcessor (line 11) | function createProcessor(plugin: ZodPlugin['Instance']): ProcessorResult { FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/array.ts type ArrayToAstOptions (line 10) | type ArrayToAstOptions = Pick< function baseNode (line 15) | function baseNode(ctx: ArrayResolverContext): Chain { function lengthNode (line 86) | function lengthNode(ctx: ArrayResolverContext): ChainResult { function maxLengthNode (line 93) | function maxLengthNode(ctx: ArrayResolverContext): ChainResult { function minLengthNode (line 99) | function minLengthNode(ctx: ArrayResolverContext): ChainResult { function arrayResolver (line 105) | function arrayResolver(ctx: ArrayResolverContext): Chain { function arrayToAst (line 127) | function arrayToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/boolean.ts function baseNode (line 9) | function baseNode(ctx: BooleanResolverContext): Chain { function constNode (line 15) | function constNode(ctx: BooleanResolverContext): ChainResult { function booleanResolver (line 22) | function booleanResolver(ctx: BooleanResolverContext): Chain { function booleanToAst (line 35) | function booleanToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/enum.ts function itemsNode (line 9) | function itemsNode(ctx: EnumResolverContext): ReturnType; type ObjectToAstOptions (line 13) | interface ObjectToAstOptions { type ExtendedContext (line 21) | type ExtendedContext = ObjectResolverContext; function additionalPropertiesNode (line 23) | function additionalPropertiesNode(ctx: ExtendedContext): Chain | null | ... function baseNode (line 42) | function baseNode(ctx: ExtendedContext): Chain { function objectResolver (line 56) | function objectResolver(ctx: ExtendedContext): Chain { function shapeNode (line 60) | function shapeNode(ctx: ExtendedContext): ReturnType { function objectToAst (line 81) | function objectToAst(options: ObjectToAstOptions): CompositeHandlerResult { FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/string.ts function baseNode (line 9) | function baseNode(ctx: StringResolverContext): Chain { function constNode (line 14) | function constNode(ctx: StringResolverContext): ChainResult { function formatNode (line 21) | function formatNode(ctx: StringResolverContext): ChainResult { function lengthNode (line 49) | function lengthNode(ctx: StringResolverContext): ChainResult { function maxLengthNode (line 55) | function maxLengthNode(ctx: StringResolverContext): ChainResult { function minLengthNode (line 61) | function minLengthNode(ctx: StringResolverContext): ChainResult { function patternNode (line 67) | function patternNode(ctx: StringResolverContext): ChainResult { function stringResolver (line 74) | function stringResolver(ctx: StringResolverContext): Chain { function stringToNode (line 104) | function stringToNode({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/tuple.ts type TupleToAstOptions (line 9) | type TupleToAstOptions = Pick< function baseNode (line 14) | function baseNode(ctx: TupleResolverContext): Chain { function constNode (line 31) | function constNode(ctx: TupleResolverContext): ChainResult { function tupleResolver (line 46) | function tupleResolver(ctx: TupleResolverContext): Chain { function tupleToAst (line 59) | function tupleToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/undefined.ts function baseNode (line 9) | function baseNode(ctx: UndefinedResolverContext): Chain { function undefinedResolver (line 15) | function undefinedResolver(ctx: UndefinedResolverContext): Chain { function undefinedToAst (line 21) | function undefinedToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/unknown.ts function baseNode (line 9) | function baseNode(ctx: UnknownResolverContext): Chain { function unknownResolver (line 15) | function unknownResolver(ctx: UnknownResolverContext): Chain { function unknownToAst (line 21) | function unknownToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/toAst/void.ts function baseNode (line 9) | function baseNode(ctx: VoidResolverContext): Chain { function voidResolver (line 15) | function voidResolver(ctx: VoidResolverContext): Chain { function voidToAst (line 21) | function voidToAst({ FILE: packages/openapi-ts/src/plugins/zod/v3/walker.ts type VisitorConfig (line 27) | interface VisitorConfig { function createVisitor (line 32) | function createVisitor( FILE: packages/openapi-ts/src/plugins/zod/v4/processor.ts function createProcessor (line 11) | function createProcessor(plugin: ZodPlugin['Instance']): ProcessorResult { FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/array.ts type ArrayToAstOptions (line 10) | type ArrayToAstOptions = Pick< function baseNode (line 15) | function baseNode(ctx: ArrayResolverContext): Chain { function lengthNode (line 86) | function lengthNode(ctx: ArrayResolverContext): ChainResult { function maxLengthNode (line 93) | function maxLengthNode(ctx: ArrayResolverContext): ChainResult { function minLengthNode (line 99) | function minLengthNode(ctx: ArrayResolverContext): ChainResult { function arrayResolver (line 105) | function arrayResolver(ctx: ArrayResolverContext): Chain { function arrayToAst (line 127) | function arrayToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/boolean.ts function baseNode (line 9) | function baseNode(ctx: BooleanResolverContext): Chain { function constNode (line 15) | function constNode(ctx: BooleanResolverContext): ChainResult { function booleanResolver (line 22) | function booleanResolver(ctx: BooleanResolverContext): Chain { function booleanToAst (line 35) | function booleanToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/enum.ts function itemsNode (line 10) | function itemsNode(ctx: EnumResolverContext): ReturnType; type ObjectToAstOptions (line 13) | interface ObjectToAstOptions { type ExtendedContext (line 21) | type ExtendedContext = ObjectResolverContext & { function additionalPropertiesNode (line 27) | function additionalPropertiesNode(ctx: ExtendedContext): Chain | null | ... function baseNode (line 46) | function baseNode(ctx: ExtendedContext): Chain { function objectResolver (line 60) | function objectResolver(ctx: ExtendedContext): Chain { function shapeNode (line 64) | function shapeNode(ctx: ExtendedContext): ReturnType { function objectToAst (line 85) | function objectToAst(options: ObjectToAstOptions): CompositeHandlerResult { FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/string.ts function baseNode (line 9) | function baseNode(ctx: StringResolverContext): Chain { function constNode (line 14) | function constNode(ctx: StringResolverContext): ChainResult { function formatNode (line 21) | function formatNode(ctx: StringResolverContext): ChainResult { function lengthNode (line 56) | function lengthNode(ctx: StringResolverContext): ChainResult { function maxLengthNode (line 62) | function maxLengthNode(ctx: StringResolverContext): ChainResult { function minLengthNode (line 68) | function minLengthNode(ctx: StringResolverContext): ChainResult { function patternNode (line 74) | function patternNode(ctx: StringResolverContext): ChainResult { function stringResolver (line 81) | function stringResolver(ctx: StringResolverContext): Chain { function stringToNode (line 111) | function stringToNode({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/tuple.ts type TupleToAstOptions (line 9) | type TupleToAstOptions = Pick< function baseNode (line 14) | function baseNode(ctx: TupleResolverContext): Chain { function constNode (line 31) | function constNode(ctx: TupleResolverContext): ChainResult { function tupleResolver (line 46) | function tupleResolver(ctx: TupleResolverContext): Chain { function tupleToAst (line 59) | function tupleToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/undefined.ts function baseNode (line 9) | function baseNode(ctx: UndefinedResolverContext): Chain { function undefinedResolver (line 15) | function undefinedResolver(ctx: UndefinedResolverContext): Chain { function undefinedToAst (line 21) | function undefinedToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/union.ts type UnionToAstOptions (line 9) | type UnionToAstOptions = Pick< function baseNode (line 14) | function baseNode(ctx: UnionResolverContext): Chain { function unionResolver (line 48) | function unionResolver(ctx: UnionResolverContext): Chain { function unionToAst (line 54) | function unionToAst({ parentSchema, plugin, schemas, walk, walkerCtx }: ... FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/unknown.ts function baseNode (line 9) | function baseNode(ctx: UnknownResolverContext): Chain { function unknownResolver (line 15) | function unknownResolver(ctx: UnknownResolverContext): Chain { function unknownToAst (line 21) | function unknownToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/toAst/void.ts function baseNode (line 9) | function baseNode(ctx: VoidResolverContext): Chain { function voidResolver (line 15) | function voidResolver(ctx: VoidResolverContext): Chain { function voidToAst (line 21) | function voidToAst({ FILE: packages/openapi-ts/src/plugins/zod/v4/walker.ts type VisitorConfig (line 27) | interface VisitorConfig { function createVisitor (line 32) | function createVisitor( FILE: packages/openapi-ts/src/ts-compiler/__tests__/globalTeardown.ts function teardown (line 5) | function teardown() { FILE: packages/openapi-ts/src/ts-compiler/__tests__/nodes/utils.ts function getCallerFile (line 7) | function getCallerFile(): string { function assertPrintedMatchesSnapshot (line 21) | async function assertPrintedMatchesSnapshot( FILE: packages/openapi-ts/src/ts-compiler/index.ts type Node (line 21) | type Node = _TsNode; type NodeBase (line 22) | type NodeBase = _TsNodeBase; type NodeKind (line 23) | type NodeKind = TsNodeKind; type Expression (line 24) | type Expression = _TsExpression; type Statement (line 25) | type Statement = _TsStatement; type Type (line 26) | type Type = _TsType; type SourceFile (line 29) | type SourceFile = TsSourceFile; type Assignment (line 35) | type Assignment = _TsAssignment; type VariableStatement (line 36) | type VariableStatement = _TsVariableStatement; type Identifier (line 39) | type Identifier = _TsIdentifier; type Literal (line 40) | type Literal = _TsLiteral; type PrinterOptions (line 43) | type PrinterOptions = _TsPrinterOptions; type LiteralValue (line 46) | type LiteralValue = _TsLiteralValue; FILE: packages/openapi-ts/src/ts-compiler/nodes/base.ts type TsNodeBase (line 7) | interface TsNodeBase { type TsNode (line 14) | type TsNode = TsExpression | TsSourceFile | TsStatement; FILE: packages/openapi-ts/src/ts-compiler/nodes/expression.ts type TsExpression (line 4) | type TsExpression = TsIdentifier | TsLiteral; FILE: packages/openapi-ts/src/ts-compiler/nodes/expressions/identifier.ts type TsIdentifier (line 4) | interface TsIdentifier extends TsNodeBase { function createIdentifier (line 9) | function createIdentifier( FILE: packages/openapi-ts/src/ts-compiler/nodes/expressions/literal.ts type TsLiteralValue (line 4) | type TsLiteralValue = string | number | boolean | bigint | null; type TsLiteral (line 6) | interface TsLiteral extends TsNodeBase { function createLiteral (line 11) | function createLiteral( FILE: packages/openapi-ts/src/ts-compiler/nodes/kinds.ts type TsNodeKind (line 1) | enum TsNodeKind { FILE: packages/openapi-ts/src/ts-compiler/nodes/statement.ts type TsStatement (line 4) | type TsStatement = TsAssignment | TsVariableStatement; FILE: packages/openapi-ts/src/ts-compiler/nodes/statements/assignment.ts type TsAssignment (line 5) | interface TsAssignment extends TsNodeBase { function createAssignment (line 12) | function createAssignment( FILE: packages/openapi-ts/src/ts-compiler/nodes/statements/var.ts type TsVariableKeyword (line 6) | type TsVariableKeyword = 'var' | 'let' | 'const'; type TsVariableStatement (line 8) | interface TsVariableStatement extends TsNodeBase { function createVariableStatement (line 16) | function createVariableStatement( FILE: packages/openapi-ts/src/ts-compiler/nodes/structure/sourceFile.ts type TsSourceFile (line 4) | interface TsSourceFile extends TsNodeBase { function createSourceFile (line 9) | function createSourceFile( FILE: packages/openapi-ts/src/ts-compiler/nodes/type.ts type TsType (line 1) | type TsType = never; FILE: packages/openapi-ts/src/ts-compiler/printer.ts type TsPrinterOptions (line 4) | interface TsPrinterOptions { constant DEFAULT_INDENT_SIZE (line 19) | const DEFAULT_INDENT_SIZE = 2; constant DEFAULT_SEMICOLONS (line 20) | const DEFAULT_SEMICOLONS = true; function createPrinter (line 22) | function createPrinter(options?: TsPrinterOptions) { function printAst (line 128) | function printAst(node: TsNode): string { FILE: packages/openapi-ts/src/ts-dsl/base.ts method analyze (line 23) | analyze(_: AnalysisContext): void {} method clone (line 24) | clone(): this { method name (line 31) | get name(): Node['name'] { method toAst (line 51) | toAst(): T { method $if (line 78) | $if( method $maybeId (line 152) | protected $maybeId( method $name (line 160) | protected $name(name: Ref): string { method $node (line 172) | protected $node(value: I): NodeOfMaybe { method $type (line 193) | protected $type(value: I, args?: ReadonlyArray): TypeOfM... method unwrap (line 223) | private unwrap(value: I): I extends TsDsl ? N : I { type NodeOfMaybe (line 228) | type NodeOfMaybe = undefined extends I type NodeOf (line 232) | type NodeOf = type MaybeTsDsl (line 243) | type MaybeTsDsl = type TypeOfMaybe (line 255) | type TypeOfMaybe = undefined extends I type TypeOf (line 259) | type TypeOf = FILE: packages/openapi-ts/src/ts-dsl/decl/class.ts type Body (line 17) | type Body = Array>; class ClassTsDsl (line 23) | class ClassTsDsl extends Mixed { method constructor (line 30) | constructor(name: NodeName) { method analyze (line 38) | override analyze(ctx: AnalysisContext): void { method hasBody (line 53) | get hasBody(): boolean { method do (line 58) | do(...items: Body): this { method extends (line 64) | extends(base?: NodeName): this { method field (line 70) | field(name: NodeName, fn?: (f: FieldTsDsl) => void): this { method init (line 77) | init(fn?: InitTsDsl | ((i: InitTsDsl) => void)): this { method method (line 84) | method(name: NodeName, fn?: (m: MethodTsDsl) => void): this { method newline (line 91) | newline(): this { method toAst (line 96) | override toAst() { method _heritage (line 109) | private _heritage(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/decl/decorator.ts class DecoratorTsDsl (line 11) | class DecoratorTsDsl extends Mixed { method constructor (line 15) | constructor(name: NodeName, ...args: ReadonlyArray; type ValueFn (line 13) | type ValueFn = Value | ((m: EnumMemberTsDsl) => void); class EnumTsDsl (line 17) | class EnumTsDsl extends Mixed { method constructor (line 23) | constructor(name: NodeName, fn?: (e: EnumTsDsl) => void) { method analyze (line 32) | override analyze(ctx: AnalysisContext): void { method member (line 46) | member(name: string, value?: ValueFn): this { method members (line 53) | members(...members: ReadonlyArray): this { method toAst (line 58) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/field.ts type FieldType (line 20) | type FieldType = NodeName | TypeTsDsl; class FieldTsDsl (line 34) | class FieldTsDsl extends Mixed { method constructor (line 40) | constructor(name: NodeName, fn?: (f: FieldTsDsl) => void) { method analyze (line 46) | override analyze(ctx: AnalysisContext): void { method type (line 53) | type(type: FieldType): this { method toAst (line 58) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/func.ts type FuncMode (line 24) | type FuncMode = 'arrow' | 'decl' | 'expr'; class ImplFuncTsDsl (line 48) | class ImplFuncTsDsl extends Mixed { method constructor (line 58) | constructor( method analyze (line 76) | override analyze(ctx: AnalysisContext): void { method isValid (line 87) | get isValid(): boolean { method arrow (line 92) | arrow(): FuncTsDsl<'arrow'> { method decl (line 98) | decl(): FuncTsDsl<'decl'> { method expr (line 104) | expr(): FuncTsDsl<'expr'> { method toAst (line 110) | override toAst(): M extends 'decl' method $validate (line 159) | $validate(): asserts this { method missingRequiredCalls (line 165) | private missingRequiredCalls(): ReadonlyArray { type FuncTsDsl (line 178) | type FuncTsDsl = ImplFuncTsDsl; FILE: packages/openapi-ts/src/ts-dsl/decl/getter.ts class GetterTsDsl (line 39) | class GetterTsDsl extends Mixed { method constructor (line 43) | constructor(name: NodeName, fn?: (g: GetterTsDsl) => void) { method analyze (line 49) | override analyze(ctx: AnalysisContext): void { method toAst (line 60) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/init.ts class InitTsDsl (line 20) | class InitTsDsl extends Mixed { method constructor (line 23) | constructor(fn?: (i: InitTsDsl) => void) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method toAst (line 37) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/member.ts type Value (line 9) | type Value = string | number | MaybeTsDsl; type ValueFn (line 10) | type ValueFn = Value | ((m: EnumMemberTsDsl) => void); class EnumMemberTsDsl (line 14) | class EnumMemberTsDsl extends Mixed { method constructor (line 19) | constructor(name: NodeName, value?: ValueFn) { method analyze (line 29) | override analyze(ctx: AnalysisContext): void { method value (line 35) | value(value?: Value): this { method toAst (line 40) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/method.ts class MethodTsDsl (line 46) | class MethodTsDsl extends Mixed { method constructor (line 50) | constructor(name: NodeName, fn?: (m: MethodTsDsl) => void) { method analyze (line 56) | override analyze(ctx: AnalysisContext): void { method toAst (line 67) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/decl/param.ts type ParamName (line 12) | type ParamName = NodeName | ParamFn; type ParamFn (line 13) | type ParamFn = (p: ParamTsDsl) => void; type ParamCtor (line 15) | type ParamCtor = (name: ParamName, fn?: ParamFn) => ParamTsDsl; class ParamTsDsl (line 21) | class ParamTsDsl extends Mixed { method constructor (line 26) | constructor(name: ParamName, fn?: ParamFn) { method analyze (line 36) | override analyze(ctx: AnalysisContext): void { method isValid (line 43) | get isValid(): boolean { method type (line 48) | type(type: string | TypeTsDsl): this { method toAst (line 53) | override toAst() { method $validate (line 65) | $validate(): asserts this { method missingRequiredCalls (line 71) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/decl/pattern.ts class PatternTsDsl (line 14) | class PatternTsDsl extends Mixed { method analyze (line 22) | override analyze(ctx: AnalysisContext): void { method isValid (line 27) | get isValid(): boolean { method array (line 32) | array(...props: ReadonlyArray | [ReadonlyArray]): this { method object (line 39) | object(...props: ReadonlyArray | Record { method createSpread (line 98) | private createSpread(): ts.BindingElement | undefined { FILE: packages/openapi-ts/src/ts-dsl/decl/setter.ts class SetterTsDsl (line 36) | class SetterTsDsl extends Mixed { method constructor (line 40) | constructor(name: NodeName, fn?: (s: SetterTsDsl) => void) { method analyze (line 46) | override analyze(ctx: AnalysisContext): void { method toAst (line 57) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/array.ts class ArrayTsDsl (line 12) | class ArrayTsDsl extends Mixed { method constructor (line 20) | constructor(...exprs: Array): ... method elements (line 43) | elements(...exprs: ReadonlyArray): this { method toAst (line 54) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/as.ts type AsExpr (line 11) | type AsExpr = NodeName | MaybeTsDsl; type AsType (line 12) | type AsType = NodeName | TypeTsDsl; type AsCtor (line 13) | type AsCtor = (expr: AsExpr, type: AsType) => AsTsDsl; class AsTsDsl (line 17) | class AsTsDsl extends Mixed { method constructor (line 23) | constructor(expr: AsExpr, type: AsType) { method analyze (line 29) | override analyze(ctx: AnalysisContext): void { method toAst (line 35) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/attr.ts type AttrLeft (line 16) | type AttrLeft = NodeName | MaybeTsDsl; type AttrCtor (line 17) | type AttrCtor = (left: AttrLeft, right: NodeName) => AttrTsDsl; class AttrTsDsl (line 25) | class AttrTsDsl extends Mixed { method constructor (line 30) | constructor(left: AttrLeft, right: NodeName) { method analyze (line 36) | override analyze(ctx: AnalysisContext): void { method toAst (line 42) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/await.ts type AwaitExpr (line 10) | type AwaitExpr = NodeName | MaybeTsDsl; type AwaitCtor (line 11) | type AwaitCtor = (expr: AwaitExpr) => AwaitTsDsl; class AwaitTsDsl (line 15) | class AwaitTsDsl extends Mixed { method constructor (line 20) | constructor(expr: AwaitExpr) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method toAst (line 30) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/binary.ts type Expr (line 10) | type Expr = NodeName | MaybeTsDsl; type Op (line 11) | type Op = Operator | ts.BinaryOperator; type Operator (line 12) | type Operator = class BinaryTsDsl (line 33) | class BinaryTsDsl extends Mixed { method constructor (line 40) | constructor(base: Expr, op?: Op, expr?: Expr) { method analyze (line 47) | override analyze(ctx: AnalysisContext): void { method isValid (line 54) | get isValid(): boolean { method and (line 59) | and(expr: Expr): this { method assign (line 64) | assign(expr: Expr): this { method coalesce (line 69) | coalesce(expr: Expr): this { method div (line 74) | div(expr: Expr): this { method eq (line 79) | eq(expr: Expr): this { method gt (line 84) | gt(expr: Expr): this { method gte (line 89) | gte(expr: Expr): this { method looseEq (line 94) | looseEq(expr: Expr): this { method looseNeq (line 99) | looseNeq(expr: Expr): this { method lt (line 104) | lt(expr: Expr): this { method lte (line 109) | lte(expr: Expr): this { method minus (line 114) | minus(expr: Expr): this { method neq (line 119) | neq(expr: Expr): this { method nullishAssign (line 124) | nullishAssign(expr: Expr): this { method or (line 129) | or(expr: Expr): this { method plus (line 134) | plus(expr: Expr): this { method times (line 139) | times(expr: Expr): this { method toAst (line 143) | override toAst() { method $validate (line 150) | $validate(): asserts this is this & { method missingRequiredCalls (line 159) | private missingRequiredCalls(): ReadonlyArray { method opAndExpr (line 167) | private opAndExpr(op: Op, expr: Expr): this { method opToToken (line 173) | private opToToken(op: Operator): ts.BinaryOperator | ts.BinaryOperator... FILE: packages/openapi-ts/src/ts-dsl/expr/call.ts type CallArgs (line 13) | type CallArgs = ReadonlyArray; type CallCallee (line 14) | type CallCallee = NodeName | MaybeTsDsl; type CallCtor (line 15) | type CallCtor = (callee: CallCallee, ...args: CallArgs) => CallTsDsl; class CallTsDsl (line 19) | class CallTsDsl extends Mixed { method constructor (line 24) | constructor(callee: CallCallee, ...args: CallArgs) { method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method toAst (line 35) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/expr.ts type Id (line 12) | type Id = NodeName | MaybeTsDsl; class ExprTsDsl (line 16) | class ExprTsDsl extends Mixed { method constructor (line 21) | constructor(id: Id) { method analyze (line 31) | override analyze(ctx: AnalysisContext): void { method toAst (line 36) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/id.ts class IdTsDsl (line 8) | class IdTsDsl extends Mixed { method constructor (line 11) | constructor(name: string) { method analyze (line 16) | override analyze(ctx: AnalysisContext): void { method toAst (line 20) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/literal.ts class LiteralTsDsl (line 20) | class LiteralTsDsl extends Mixed { method constructor (line 25) | constructor(value: ts.LiteralValue) { method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method toAst (line 34) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/new.ts type NewArgs (line 13) | type NewArgs = ReadonlyArray; type NewExpr (line 14) | type NewExpr = NodeName | MaybeTsDsl; type NewCtor (line 15) | type NewCtor = (expr: NewExpr, ...args: NewArgs) => NewTsDsl; class NewTsDsl (line 19) | class NewTsDsl extends Mixed { method constructor (line 24) | constructor(expr: NewExpr, ...args: NewArgs) { method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method toAst (line 35) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/object.ts type Expr (line 12) | type Expr = NodeName | MaybeTsDsl; type Stmt (line 13) | type Stmt = NodeName | MaybeTsDsl; type ExprFn (line 14) | type ExprFn = Expr | ((p: ObjectPropTsDsl) => void); type StmtFn (line 15) | type StmtFn = Stmt | ((p: ObjectPropTsDsl) => void); class ObjectTsDsl (line 19) | class ObjectTsDsl extends Mixed { method constructor (line 25) | constructor(...props: Array) { method analyze (line 30) | override analyze(ctx: AnalysisContext): void { method _propKey (line 38) | private _propKey(prop: ObjectPropTsDsl): string { method computed (line 46) | computed(name: string, expr: ExprFn | null): this { method getter (line 59) | getter(name: string, stmt: StmtFn | null): this { method hasProps (line 69) | hasProps(): boolean { method isEmpty (line 74) | get isEmpty(): boolean { method prop (line 79) | prop(name: string, expr: ExprFn | null): this { method props (line 89) | props(...props: ReadonlyArray): this { method setter (line 97) | setter(name: string, stmt: StmtFn | null): this { method spread (line 107) | spread(expr: ExprFn): this { method toAst (line 113) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/prefix.ts class PrefixTsDsl (line 9) | class PrefixTsDsl extends Mixed { method constructor (line 15) | constructor(expr?: string | MaybeTsDsl, op?: ts.PrefixU... method analyze (line 21) | override analyze(ctx: AnalysisContext): void { method isValid (line 27) | get isValid(): boolean { method expr (line 32) | expr(expr: string | MaybeTsDsl): this { method neg (line 38) | neg(): this { method not (line 44) | not(): this { method op (line 50) | op(op: ts.PrefixUnaryOperator): this { method toAst (line 55) | override toAst() { method $validate (line 60) | $validate(): asserts this is this & { method missingRequiredCalls (line 69) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/expr/prop.ts type Expr (line 13) | type Expr = NodeName | MaybeTsDsl; type Stmt (line 14) | type Stmt = NodeName | MaybeTsDsl; type ObjectPropKind (line 16) | type ObjectPropKind = 'computed' | 'getter' | 'prop' | 'setter' | 'spread'; type Meta (line 18) | type Meta = class ObjectPropTsDsl (line 27) | class ObjectPropTsDsl extends Mixed { method constructor (line 33) | constructor(meta: Meta) { method kind (line 38) | get kind(): ObjectPropKind { method propName (line 42) | get propName(): string | undefined { method analyze (line 46) | override analyze(ctx: AnalysisContext): void { method isValid (line 51) | get isValid(): boolean { method value (line 55) | value(value: Expr | Stmt | ((p: ObjectPropTsDsl) => void)) { method toAst (line 64) | override toAst() { method $validate (line 102) | $validate(): asserts this is this & { method missingRequiredCalls (line 113) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/expr/regexp.ts type RegexFlag (line 6) | type RegexFlag = 'g' | 'i' | 'm' | 's' | 'u' | 'y'; type RegexFlags (line 8) | type RegexFlags = class RegExpTsDsl (line 16) | class RegExpTsDsl extends Mixed { method constructor (line 22) | constructor(pattern: string, flags?: RegexFlags) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method toAst (line 32) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/template.ts type TemplatePart (line 8) | type TemplatePart = NodeName | MaybeTsDsl; class TemplateTsDsl (line 12) | class TemplateTsDsl extends Mixed { method constructor (line 17) | constructor(value?: TemplatePart) { method analyze (line 22) | override analyze(ctx: AnalysisContext): void { method add (line 29) | add(value: TemplatePart): this { method toAst (line 34) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/expr/ternary.ts class TernaryTsDsl (line 9) | class TernaryTsDsl extends Mixed { method constructor (line 16) | constructor(condition?: string | MaybeTsDsl) { method analyze (line 21) | override analyze(ctx: AnalysisContext): void { method isValid (line 29) | get isValid(): boolean { method condition (line 33) | condition(condition: string | MaybeTsDsl) { method do (line 38) | do(expr: string | MaybeTsDsl) { method otherwise (line 43) | otherwise(expr: string | MaybeTsDsl) { method toAst (line 48) | override toAst() { method $validate (line 59) | $validate(): asserts this is this & { method missingRequiredCalls (line 69) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/expr/typeof.ts type TypeOfExpr (line 9) | type TypeOfExpr = string | MaybeTsDsl; type TypeOfExprCtor (line 10) | type TypeOfExprCtor = (expr: TypeOfExpr) => TypeOfExprTsDsl; class TypeOfExprTsDsl (line 14) | class TypeOfExprTsDsl extends Mixed { method constructor (line 19) | constructor(expr: TypeOfExpr) { method analyze (line 24) | override analyze(ctx: AnalysisContext): void { method toAst (line 29) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/index.ts type DollarTsDsl (line 283) | type DollarTsDsl = { FILE: packages/openapi-ts/src/ts-dsl/layout/doc.ts type DocMaybeLazy (line 10) | type DocMaybeLazy = ((ctx: TsDslContext) => T) | T; type DocFn (line 11) | type DocFn = (d: DocTsDsl) => void; type DocLines (line 12) | type DocLines = DocMaybeLazy>; class DocTsDsl (line 14) | class DocTsDsl extends TsDsl { method constructor (line 19) | constructor(lines?: DocLines, fn?: DocFn) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method add (line 29) | add(lines: DocLines): this { method apply (line 34) | apply(node: T): T { method toAst (line 63) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/layout/hint.ts type HintMaybeLazy (line 10) | type HintMaybeLazy = ((ctx: TsDslContext) => T) | T; type HintFn (line 11) | type HintFn = (d: HintTsDsl) => void; type HintLines (line 12) | type HintLines = HintMaybeLazy>; class HintTsDsl (line 14) | class HintTsDsl extends TsDsl { method constructor (line 19) | constructor(lines?: HintLines, fn?: HintFn) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method add (line 29) | add(lines: HintLines): this { method apply (line 34) | apply(node: T): T { method toAst (line 51) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/layout/newline.ts class NewlineTsDsl (line 7) | class NewlineTsDsl extends TsDsl { method analyze (line 10) | override analyze(ctx: AnalysisContext): void { method toAst (line 14) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/layout/note.ts type NoteMaybeLazy (line 10) | type NoteMaybeLazy = ((ctx: TsDslContext) => T) | T; type NoteFn (line 11) | type NoteFn = (d: NoteTsDsl) => void; type NoteLines (line 12) | type NoteLines = NoteMaybeLazy>; class NoteTsDsl (line 14) | class NoteTsDsl extends TsDsl { method constructor (line 19) | constructor(lines?: NoteLines, fn?: NoteFn) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method add (line 29) | add(lines: NoteLines): this { method apply (line 34) | apply(node: T): T { method toAst (line 54) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/mixins/args.ts type Arg (line 8) | type Arg = NodeName | MaybeTsDsl; type ArgsMethods (line 10) | interface ArgsMethods extends Node { function ArgsMixin (line 22) | function ArgsMixin>(Base: T... FILE: packages/openapi-ts/src/ts-dsl/mixins/as.ts type AsMethods (line 7) | interface AsMethods extends Node { function AsMixin (line 12) | function AsMixin>(Bas... FILE: packages/openapi-ts/src/ts-dsl/mixins/decorator.ts type DecoratorMethods (line 8) | interface DecoratorMethods extends Node { function DecoratorMixin (line 18) | function DecoratorMixin>(Ba... FILE: packages/openapi-ts/src/ts-dsl/mixins/do.ts type DoExpr (line 8) | type DoExpr = MaybeTsDsl; type DoMethods (line 10) | interface DoMethods extends Node { function DoMixin (line 21) | function DoMixin>(Base: TBa... FILE: packages/openapi-ts/src/ts-dsl/mixins/doc.ts type DocMethods (line 8) | interface DocMethods extends Node { function DocMixin (line 13) | function DocMixin>(Base: TB... FILE: packages/openapi-ts/src/ts-dsl/mixins/expr.ts type ExprMethods (line 7) | interface ExprMethods extends Node { function ExprMixin (line 18) | function ExprMixin>(B... FILE: packages/openapi-ts/src/ts-dsl/mixins/hint.ts type HintMethods (line 8) | interface HintMethods extends Node { function HintMixin (line 13) | function HintMixin>(Base: T... FILE: packages/openapi-ts/src/ts-dsl/mixins/layout.ts type LayoutMethods (line 6) | interface LayoutMethods extends Node { function LayoutMixin (line 17) | function LayoutMixin>(Base:... FILE: packages/openapi-ts/src/ts-dsl/mixins/modifiers.ts type Modifiers (line 6) | type Modifiers = { type Modifier (line 17) | type Modifier = type ModifierMethods (line 31) | interface ModifierMethods extends Modifiers { function modifierToKind (line 42) | function modifierToKind(modifier: Modifier): ts.ModifierSyntaxKind { function ModifiersMixin (line 71) | function ModifiersMixin>(Ba... type AbstractMethods (line 96) | interface AbstractMethods extends Modifiers { function AbstractMixin (line 109) | function AbstractMixin>(Bas... type AsyncMethods (line 122) | interface AsyncMethods extends Modifiers { function AsyncMixin (line 135) | function AsyncMixin>(Base: ... type ConstMethods (line 148) | interface ConstMethods extends Modifiers { function ConstMixin (line 161) | function ConstMixin>(Base: ... type DeclareMethods (line 174) | interface DeclareMethods extends Modifiers { function DeclareMixin (line 187) | function DeclareMixin>(Base... type DefaultMethods (line 200) | interface DefaultMethods extends Modifiers { function DefaultMixin (line 213) | function DefaultMixin>(Base... type ExportMethods (line 232) | interface ExportMethods extends Modifiers { function ExportMixin (line 245) | function ExportMixin>(Base:... type OverrideMethods (line 267) | interface OverrideMethods extends Modifiers { function OverrideMixin (line 280) | function OverrideMixin>(Bas... type PrivateMethods (line 293) | interface PrivateMethods extends Modifiers { function PrivateMixin (line 306) | function PrivateMixin>(Base... type ProtectedMethods (line 319) | interface ProtectedMethods extends Modifiers { function ProtectedMixin (line 332) | function ProtectedMixin>(Ba... type PublicMethods (line 345) | interface PublicMethods extends Modifiers { function PublicMixin (line 358) | function PublicMixin>(Base:... type ReadonlyMethods (line 371) | interface ReadonlyMethods extends Modifiers { function ReadonlyMixin (line 384) | function ReadonlyMixin>(Bas... type StaticMethods (line 397) | interface StaticMethods extends Modifiers { function StaticMixin (line 410) | function StaticMixin>(Base:... FILE: packages/openapi-ts/src/ts-dsl/mixins/note.ts type NoteMethods (line 8) | interface NoteMethods extends Node { function NoteMixin (line 13) | function NoteMixin>(Base: T... FILE: packages/openapi-ts/src/ts-dsl/mixins/operator.ts type Expr (line 8) | type Expr = NodeName | MaybeTsDsl; type OperatorMethods (line 10) | interface OperatorMethods extends Node { function OperatorMixin (line 47) | function OperatorMixin>(Bas... FILE: packages/openapi-ts/src/ts-dsl/mixins/param.ts type ParamMethods (line 9) | interface ParamMethods extends Node { function ParamMixin (line 18) | function ParamMixin>(Base: ... FILE: packages/openapi-ts/src/ts-dsl/mixins/pattern.ts type PatternMethods (line 8) | interface PatternMethods extends Node { function PatternMixin (line 22) | function PatternMixin>(Base... FILE: packages/openapi-ts/src/ts-dsl/mixins/type-args.ts type Arg (line 8) | type Arg = NodeName | MaybeTsDsl; type TypeArgsMethods (line 10) | interface TypeArgsMethods extends Node { function TypeArgsMixin (line 19) | function TypeArgsMixin>(Bas... FILE: packages/openapi-ts/src/ts-dsl/mixins/type-expr.ts type TypeExprMethods (line 8) | interface TypeExprMethods extends Node { function TypeExprMixin (line 37) | function TypeExprMixin>(Bas... FILE: packages/openapi-ts/src/ts-dsl/mixins/type-params.ts type TypeParamsMethods (line 9) | interface TypeParamsMethods extends Node { function TypeParamsMixin (line 18) | function TypeParamsMixin>(B... FILE: packages/openapi-ts/src/ts-dsl/mixins/type-returns.ts type TypeReturnsMethods (line 8) | interface TypeReturnsMethods extends Node { function TypeReturnsMixin (line 15) | function TypeReturnsMixin>(... FILE: packages/openapi-ts/src/ts-dsl/mixins/types.ts type BaseCtor (line 5) | type BaseCtor = abstract new (...args: Array) =>... type DropFirst (line 7) | type DropFirst> = T extends [any, ...infer Rest] ? ... type MixinCtor (line 9) | type MixinCtor, K> = abstract new ( FILE: packages/openapi-ts/src/ts-dsl/mixins/value.ts type ValueExpr (line 7) | type ValueExpr = string | MaybeTsDsl; type ValueMethods (line 9) | interface ValueMethods extends Node { function ValueMixin (line 15) | function ValueMixin>(Base: ... FILE: packages/openapi-ts/src/ts-dsl/stmt/block.ts class BlockTsDsl (line 11) | class BlockTsDsl extends Mixed { method constructor (line 14) | constructor(...items: Array) { method analyze (line 19) | override analyze(ctx: AnalysisContext) { method toAst (line 23) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/stmt/if.ts type IfCondition (line 10) | type IfCondition = string | MaybeTsDsl; class IfTsDsl (line 14) | class IfTsDsl extends Mixed { method constructor (line 20) | constructor(condition?: IfCondition) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method isValid (line 41) | get isValid(): boolean { method condition (line 45) | condition(condition: IfCondition): this { method otherwise (line 50) | otherwise(...items: Array): this { method toAst (line 55) | override toAst() { method $validate (line 64) | $validate(): asserts this is this & { method missingRequiredCalls (line 72) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/stmt/return.ts type ReturnExpr (line 9) | type ReturnExpr = NodeName | MaybeTsDsl; type ReturnCtor (line 10) | type ReturnCtor = (expr?: ReturnExpr) => ReturnTsDsl; class ReturnTsDsl (line 14) | class ReturnTsDsl extends Mixed { method constructor (line 19) | constructor(expr?: ReturnExpr) { method analyze (line 24) | override analyze(ctx: AnalysisContext): void { method toAst (line 29) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/stmt/stmt.ts class StmtTsDsl (line 8) | class StmtTsDsl extends Mixed { method constructor (line 13) | constructor(inner: ts.Expression | ts.Statement | TsDsl) { method analyze (line 18) | override analyze(ctx: AnalysisContext): void { method toAst (line 23) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/stmt/throw.ts class ThrowTsDsl (line 10) | class ThrowTsDsl extends Mixed { method constructor (line 17) | constructor(error: string | MaybeTsDsl, useNew = true) { method analyze (line 23) | override analyze(ctx: AnalysisContext): void { method message (line 29) | message(value: string | MaybeTsDsl): this { method toAst (line 34) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/stmt/try.ts class TryTsDsl (line 10) | class TryTsDsl extends Mixed { method constructor (line 18) | constructor(...tryBlock: Array) { method analyze (line 23) | override analyze(ctx: AnalysisContext): void { method isValid (line 58) | get isValid(): boolean { method catch (line 62) | catch(...items: Array): this { method catchArg (line 67) | catchArg(arg: NodeName): this { method finally (line 72) | finally(...items: Array): this { method try (line 77) | try(...items: Array): this { method toAst (line 82) | override toAst() { method $validate (line 96) | $validate(): asserts this is this & { method missingRequiredCalls (line 104) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/stmt/var.ts class VarTsDsl (line 18) | class VarTsDsl extends Mixed { method constructor (line 25) | constructor(name?: NodeName) { method analyze (line 33) | override analyze(ctx: AnalysisContext): void { method isValid (line 40) | get isValid(): boolean { method const (line 44) | const(): this { method let (line 49) | let(): this { method type (line 55) | type(type: string | TypeTsDsl): this { method var (line 60) | var(): this { method toAst (line 65) | override toAst() { method $validate (line 84) | $validate(): asserts this { method missingRequiredCalls (line 90) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/token.ts class TokenTsDsl (line 5) | class TokenTsDsl extends TsDsl { method optional (line 22) | optional(): TokenTsDsl { method plus (line 27) | plus(): TokenTsDsl { method questionDot (line 32) | questionDot(): TokenTsDsl { method readonly (line 39) | readonly(): TokenTsDsl { method spread (line 44) | spread(): TokenTsDsl { method toAst (line 48) | override toAst(): ts.Token { method $validate (line 54) | $validate(): asserts this is this & { method missingRequiredCalls (line 62) | private missingRequiredCalls(): ReadonlyArray { method isValid (line 69) | get isValid(): boolean { FILE: packages/openapi-ts/src/ts-dsl/type/alias.ts type Value (line 12) | type Value = MaybeTsDsl; class TypeAliasTsDsl (line 16) | class TypeAliasTsDsl extends Mixed { method constructor (line 23) | constructor(name: NodeName, fn?: (t: TypeAliasTsDsl) => void) { method analyze (line 32) | override analyze(ctx: AnalysisContext): void { method isValid (line 39) | get isValid(): boolean { method type (line 44) | type(node: Value): this { method toAst (line 49) | override toAst() { method $validate (line 60) | $validate(): asserts this is this & { method missingRequiredCalls (line 69) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/and.ts type Type (line 8) | type Type = NodeName | ts.TypeNode | TypeTsDsl; class TypeAndTsDsl (line 12) | class TypeAndTsDsl extends Mixed { method constructor (line 18) | constructor(...nodes: Array) { method analyze (line 23) | override analyze(ctx: AnalysisContext): void { method types (line 30) | types(...nodes: Array): this { method toAst (line 35) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/attr.ts type Base (line 9) | type Base = NodeName | MaybeTsDsl; type Right (line 10) | type Right = NodeName | ts.Identifier; class TypeAttrTsDsl (line 14) | class TypeAttrTsDsl extends Mixed { method constructor (line 23) | constructor(base: Base | Ref, right?: Right) { method analyze (line 34) | override analyze(ctx: AnalysisContext): void { method isValid (line 41) | get isValid(): boolean { method base (line 45) | base(base?: Base | Ref): this { method right (line 54) | right(right: Right): this { method toAst (line 59) | override toAst() { method $validate (line 68) | $validate(): asserts this is this & { method missingRequiredCalls (line 77) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/expr.ts type TypeExprExpr (line 11) | type TypeExprExpr = NodeName | TypeAttrTsDsl; type TypeExprFn (line 12) | type TypeExprFn = (t: TypeExprTsDsl) => void; type TypeExprCtor (line 13) | type TypeExprCtor = (nameOrFn?: NodeName | TypeExprFn, fn?: TypeExprFn) ... class TypeExprTsDsl (line 17) | class TypeExprTsDsl extends Mixed { method constructor (line 27) | constructor(name?: NodeName | TypeExprFn, fn?: TypeExprFn) { method analyze (line 37) | override analyze(ctx: AnalysisContext): void { method isValid (line 43) | get isValid(): boolean { method attr (line 48) | attr(right: string | ts.Identifier | TypeAttrTsDsl): this { method toAst (line 55) | override toAst() { method $validate (line 63) | $validate(): asserts this is this & { method missingRequiredCalls (line 71) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/func.ts class TypeFuncTsDsl (line 12) | class TypeFuncTsDsl extends Mixed { method analyze (line 16) | override analyze(ctx: AnalysisContext): void { method isValid (line 21) | get isValid(): boolean { method toAst (line 25) | override toAst() { method $validate (line 35) | $validate(): asserts this { method missingRequiredCalls (line 41) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/idx-sig.ts type TypeIdxSigType (line 9) | type TypeIdxSigType = string | MaybeTsDsl; type TypeIdxSigKind (line 10) | type TypeIdxSigKind = 'idxSig'; class TypeIdxSigTsDsl (line 14) | class TypeIdxSigTsDsl extends Mixed { method constructor (line 21) | constructor(name: NodeName, fn?: (i: TypeIdxSigTsDsl) => void) { method kind (line 28) | get kind(): TypeIdxSigKind { method propName (line 33) | get propName(): string { method analyze (line 37) | override analyze(ctx: AnalysisContext): void { method isValid (line 44) | get isValid(): boolean { method key (line 49) | key(type: TypeIdxSigType): this { method type (line 55) | type(type: TypeIdxSigType): this { method toAst (line 60) | override toAst() { method $validate (line 78) | $validate(): asserts this is this & { method missingRequiredCalls (line 88) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/idx.ts type Base (line 9) | type Base = string | MaybeTsDsl; type Index (line 10) | type Index = string | number | MaybeTsDsl; type TypeIdxCtor (line 11) | type TypeIdxCtor = (base: Base, index: Index) => TypeIdxTsDsl; class TypeIdxTsDsl (line 15) | class TypeIdxTsDsl extends Mixed { method constructor (line 22) | constructor(base: Base, index: Index) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method isValid (line 35) | get isValid(): boolean { method base (line 39) | base(base: Base): this { method index (line 44) | index(index: Index): this { method toAst (line 49) | override toAst() { method $validate (line 54) | $validate(): asserts this is this & { method missingRequiredCalls (line 63) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/literal.ts class TypeLiteralTsDsl (line 10) | class TypeLiteralTsDsl extends Mixed { method constructor (line 16) | constructor(value: ts.LiteralValue) { method analyze (line 21) | override analyze(ctx: AnalysisContext): void { method toAst (line 25) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/mapped.ts class TypeMappedTsDsl (line 10) | class TypeMappedTsDsl extends Mixed { method constructor (line 23) | constructor(name?: NodeName) { method analyze (line 28) | override analyze(ctx: AnalysisContext): void { method isValid (line 37) | get isValid(): boolean { method key (line 42) | key(type: string | MaybeTsDsl): this { method mutable (line 48) | mutable(): this { method optional (line 54) | optional(): this { method readonly (line 60) | readonly(): this { method required (line 66) | required(): this { method type (line 72) | type(type: string | MaybeTsDsl): this { method toAst (line 77) | override toAst() { method $validate (line 94) | $validate(): asserts this is this & { method missingRequiredCalls (line 104) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/object.ts class TypeObjectTsDsl (line 10) | class TypeObjectTsDsl extends Mixed { method analyze (line 16) | override analyze(ctx: AnalysisContext): void { method hasProps (line 24) | hasProps(): boolean { method idxSig (line 29) | idxSig(name: string, fn: ((i: TypeIdxSigTsDsl) => void) | null): this { method isEmpty (line 40) | get isEmpty(): boolean { method prop (line 45) | prop(name: string, fn: ((p: TypePropTsDsl) => void) | null): this { method props (line 56) | props(...members: ReadonlyArray): this { method toAst (line 63) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/operator.ts type Op (line 8) | type Op = ts.SyntaxKind.KeyOfKeyword | ts.SyntaxKind.ReadonlyKeyword | t... type Type (line 9) | type Type = string | MaybeTsDsl; type TypeOperatorCtor (line 10) | type TypeOperatorCtor = () => TypeOperatorTsDsl; class TypeOperatorTsDsl (line 26) | class TypeOperatorTsDsl extends Mixed { method analyze (line 33) | override analyze(ctx: AnalysisContext): void { method keyof (line 39) | keyof(type: Type): this { method operator (line 46) | operator(op: Op): this { method readonly (line 52) | readonly(type: Type): this { method type (line 59) | type(type: Type): this { method unique (line 65) | unique(type: Type): this { method toAst (line 71) | override toAst() { method $validate (line 77) | $validate(): asserts this is this & { method missingRequiredCalls (line 86) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/or.ts type Type (line 8) | type Type = NodeName | ts.TypeNode | TypeTsDsl; class TypeOrTsDsl (line 12) | class TypeOrTsDsl extends Mixed { method constructor (line 18) | constructor(...nodes: Array) { method analyze (line 23) | override analyze(ctx: AnalysisContext): void { method types (line 30) | types(...nodes: Array): this { method toAst (line 35) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/param.ts type TypeParamExpr (line 8) | type TypeParamExpr = NodeName | boolean | MaybeTsDsl; class TypeParamTsDsl (line 12) | class TypeParamTsDsl extends Mixed { method constructor (line 19) | constructor(name?: NodeName, fn?: (name: TypeParamTsDsl) => void) { method analyze (line 25) | override analyze(ctx: AnalysisContext): void { method default (line 33) | default(value: TypeParamExpr): this { method extends (line 38) | extends(constraint: TypeParamExpr): this { method toAst (line 43) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/prop.ts type TypePropType (line 13) | type TypePropType = NodeName | MaybeTsDsl; type TypePropKind (line 14) | type TypePropKind = 'prop'; class TypePropTsDsl (line 18) | class TypePropTsDsl extends Mixed { method constructor (line 24) | constructor(name: NodeName, fn: (p: TypePropTsDsl) => void) { method kind (line 31) | get kind(): TypePropKind { method propName (line 36) | get propName(): string { method analyze (line 40) | override analyze(ctx: AnalysisContext): void { method isValid (line 46) | get isValid(): boolean { method type (line 51) | type(type: TypePropType): this { method toAst (line 56) | override toAst() { method $validate (line 68) | $validate(): asserts this is this & { method missingRequiredCalls (line 77) | private missingRequiredCalls(): ReadonlyArray { FILE: packages/openapi-ts/src/ts-dsl/type/query.ts type TypeQueryExpr (line 10) | type TypeQueryExpr = NodeName | MaybeTsDsl; type TypeQueryCtor (line 11) | type TypeQueryCtor = (expr: TypeQueryExpr) => TypeQueryTsDsl; class TypeQueryTsDsl (line 15) | class TypeQueryTsDsl extends Mixed { method constructor (line 21) | constructor(expr: TypeQueryExpr) { method analyze (line 26) | override analyze(ctx: AnalysisContext): void { method toAst (line 31) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/template.ts class TypeTemplateTsDsl (line 9) | class TypeTemplateTsDsl extends Mixed { method constructor (line 15) | constructor(value?: string | MaybeTsDsl) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method add (line 28) | add(part: string | MaybeTsDsl): this { method toAst (line 33) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/type/tuple.ts class TypeTupleTsDsl (line 9) | class TypeTupleTsDsl extends Mixed { method constructor (line 15) | constructor(...nodes: Array) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method elements (line 27) | elements(...types: Array): this { method toAst (line 32) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/utils/context.ts type NodeChain (line 11) | type NodeChain = ReadonlyArray; type AccessOptions (line 13) | interface AccessOptions { type AccessResult (line 22) | type AccessResult = ReturnType(accessChain: NodeChain): T { function getAccessChainForNode (line 59) | function getAccessChainForNode(node: TsDsl): NodeChain { function getScope (line 71) | function getScope(node: TsDsl): NodeScope { function getStructuralChainForNode (line 75) | function getStructuralChainForNode(node: TsDsl, visited: Set): No... function isAccessorNode (line 95) | function isAccessorNode(node: TsDsl): boolean { function isStopNode (line 103) | function isStopNode(node: TsDsl): boolean { function structuralToAccessChain (line 111) | function structuralToAccessChain(structuralChain: NodeChain): NodeChain { function transformAccessChain (line 124) | function transformAccessChain(accessChain: NodeChain, options: AccessOpt... class TsDslContext (line 152) | class TsDslContext { method access (line 165) | access(node: TsDsl | Symbol, options?: Access... method example (line 187) | example( FILE: packages/openapi-ts/src/ts-dsl/utils/factories.ts type Ctor (line 13) | type Ctor = (...args: Array) => any; type Factory (line 15) | type Factory = { function createFactory (line 21) | function createFactory(name: string): Factory { FILE: packages/openapi-ts/src/ts-dsl/utils/lazy.ts type LazyThunk (line 8) | type LazyThunk = (ctx: TsDslContext) => TsDsl; class LazyTsDsl (line 10) | class LazyTsDsl extends TsDsl { method constructor (line 15) | constructor(thunk: LazyThunk) { method analyze (line 20) | override analyze(ctx: AnalysisContext): void { method toResult (line 25) | toResult(): TsDsl { method toAst (line 29) | override toAst() { FILE: packages/openapi-ts/src/ts-dsl/utils/render-utils.ts function astToString (line 14) | function astToString(node: ts.Node): string { type SortGroup (line 68) | type SortGroup = number; type SortDistance (line 69) | type SortDistance = number; type SortModule (line 70) | type SortModule = string; type SortKey (line 71) | type SortKey = [SortGroup, SortDistance, SortModule]; type ModuleExport (line 73) | type ModuleExport = Omit & { type ModuleImport (line 78) | type ModuleImport = Omit & { function moduleSortKey (line 83) | function moduleSortKey({ FILE: packages/openapi-ts/src/ts-dsl/utils/render.ts type Exports (line 11) | type Exports = ReadonlyArray>; type ExportsOptions (line 12) | type ExportsOptions = { type Header (line 15) | type Header = MaybeArray | null | undefined; type HeaderArg (line 16) | type HeaderArg = MaybeFunc<(ctx: RenderContext) => Header>; type Imports (line 17) | type Imports = ReadonlyArray>; function headerToLines (line 19) | function headerToLines(header: Header): ReadonlyArray { class TypeScriptRenderer (line 32) | class TypeScriptRenderer implements Renderer { method constructor (line 52) | constructor( method render (line 63) | render(ctx: RenderContext): string { method supports (line 76) | supports(ctx: RenderContext): boolean { method astToString (line 80) | static astToString(args: { method toExportAst (line 130) | static toExportAst(group: ModuleExport, options?: ExportsOptions): ts.... method toImportAst (line 152) | static toImportAst(group: ModuleImport): ts.ImportDeclaration { method getExports (line 177) | private getExports(ctx: RenderContext): Exports { method getImports (line 243) | private getImports(ctx: RenderContext): Imports { FILE: packages/openapi-ts/src/ts-dsl/utils/reserved.ts type List (line 3) | type List = ReadonlyArray; class ReservedList (line 5) | class ReservedList { method constructor (line 9) | constructor(values: List) { method '~values' (line 14) | get '~values'() { method set (line 24) | set(values: List | ((prev: List) => List)): void { FILE: packages/shared/src/__tests__/cli.test.ts function outputHeaderToPrefix (line 6) | function outputHeaderToPrefix(header: unknown): string { FILE: packages/shared/src/cli.ts function isEnvironment (line 44) | function isEnvironment(value: 'development'): boolean { function printCliIntro (line 49) | function printCliIntro(initialDir: string, showLogo: boolean = false): v... FILE: packages/shared/src/config/engine.ts function checkNodeVersion (line 3) | function checkNodeVersion(): void { FILE: packages/shared/src/config/input/__tests__/input.test.ts type UserConfig (line 6) | type UserConfig = { FILE: packages/shared/src/config/input/input.ts function getWatch (line 14) | function getWatch(input: Pick): Watch { function getInput (line 37) | function getInput(userConfig: { FILE: packages/shared/src/config/input/path.ts function compileInputPath (line 5) | function compileInputPath(input: Omit) { function logInputPaths (line 98) | function logInputPaths( FILE: packages/shared/src/config/input/types.ts type JsonSchema (line 3) | type JsonSchema = Record; type ApiRegistryShorthands (line 5) | type ApiRegistryShorthands = type UserInput (line 12) | type UserInput = { type Input (line 90) | type Input = { type UserWatch (line 173) | type UserWatch = boolean | number | Watch; type Watch (line 175) | type Watch = { FILE: packages/shared/src/config/logs.ts function getLogs (line 3) | function getLogs(userLogs: string | Logs | undefined): Logs { FILE: packages/shared/src/config/output/postprocess.ts type Output (line 4) | type Output = { type UserPostProcessor (line 15) | type UserPostProcessor = { type PostProcessor (line 33) | type PostProcessor = { function postprocessOutput (line 48) | function postprocessOutput( FILE: packages/shared/src/config/output/source/config.ts function resolveSource (line 4) | function resolveSource(config: { source?: boolean | UserSourceConfig }):... FILE: packages/shared/src/config/output/source/types.ts type SourceExtension (line 7) | type SourceExtension = 'json'; type UserSourceConfig (line 10) | type UserSourceConfig = { type SourceConfig (line 63) | type SourceConfig = FeatureToggle & { FILE: packages/shared/src/config/output/types.ts type OutputHeader (line 4) | type OutputHeader = MaybeFunc< FILE: packages/shared/src/config/parser/config.ts function getParser (line 13) | function getParser(userConfig: { parser?: UserParser }): Parser { FILE: packages/shared/src/config/parser/filters.ts type Filters (line 1) | type Filters = { FILE: packages/shared/src/config/parser/patch.ts type PatchInputFn (line 13) | type PatchInputFn = ( type Patch (line 17) | type Patch = FILE: packages/shared/src/config/parser/types.ts type EnumsMode (line 7) | type EnumsMode = 'inline' | 'root'; type UserParser (line 9) | type UserParser = { type Parser (line 206) | type Parser = { FILE: packages/shared/src/config/shared.ts type FeatureToggle (line 13) | type FeatureToggle = { type UserIndexExportOption (line 20) | type UserIndexExportOption = { type IndexExportOption (line 43) | type IndexExportOption = { type UserCommentsOption (line 56) | type UserCommentsOption = { type CommentsOption (line 64) | type CommentsOption = { type NamingOptions (line 71) | type NamingOptions = { type BaseUserOutput (line 85) | interface BaseUserOutput { type BaseOutput (line 208) | interface BaseOutput { type BaseUserConfig (line 270) | type BaseUserConfig = { type BaseConfig (line 332) | type BaseConfig ... type AnyConfig (line 358) | type AnyConfig = BaseConfig, BaseOutput>; type ResolveModuleFn (line 363) | type ResolveModuleFn = (path: string, ctx: RenderContext) => string | un... FILE: packages/shared/src/config/utils/config.ts type ObjectType (line 1) | type ObjectType = type NotArray (line 6) | type NotArray = T extends Array ? never : T; type NotFunction (line 7) | type NotFunction = T extends (...args: Array) => any ? never : T; type PlainObject (line 8) | type PlainObject = T extends object type MappersType (line 16) | type MappersType = { type IsObjectOnly (line 30) | type IsObjectOnly = T extends Record | undefined type ValueToObject (line 36) | type ValueToObject = < FILE: packages/shared/src/config/utils/dependencies.ts type Dependency (line 4) | type Dependency = { function dependencyFactory (line 32) | function dependencyFactory(dependencies: Record): Depend... FILE: packages/shared/src/debug/ir.ts type PrintOptions (line 6) | interface PrintOptions { FILE: packages/shared/src/error.ts type IJobError (line 10) | type IJobError = { class ConfigError (line 20) | class ConfigError extends Error { method constructor (line 21) | constructor(message: string) { class ConfigValidationError (line 30) | class ConfigValidationError extends Error { method constructor (line 33) | constructor(errors: Array) { class JobError (line 45) | class JobError extends Error { method constructor (line 48) | constructor(message: string, error: IJobError) { class HeyApiError (line 55) | class HeyApiError extends Error { method constructor (line 60) | constructor({ function logCrashReport (line 85) | function logCrashReport(error: unknown, logsDir: string): string | undef... function openGitHubIssueWithCrashReport (line 122) | async function openGitHubIssueWithCrashReport( function printCrashReport (line 160) | function printCrashReport({ function shouldReportCrash (line 211) | async function shouldReportCrash({ FILE: packages/shared/src/fs.ts function ensureDirSync (line 4) | function ensureDirSync(path: PathLike): void { FILE: packages/shared/src/getSpec.ts type SpecResponse (line 50) | type SpecResponse = { type SpecError (line 57) | type SpecError = { function getSpec (line 67) | async function getSpec({ FILE: packages/shared/src/graph/types/graph.ts type Graph (line 10) | type Graph = { type NodeInfo (line 49) | type NodeInfo = { FILE: packages/shared/src/graph/types/walk.ts type WalkCallbackFn (line 3) | type WalkCallbackFn = (pointer: string, nodeInfo: NodeInfo) => void; type GetPointerPriorityFn (line 5) | type GetPointerPriorityFn = (pointer: string) => number; type MatchPointerToGroupFn (line 7) | type MatchPointerToGroupFn = ( type PointerGroupMatch (line 12) | type PointerGroupMatch = type WalkOptions (line 16) | type WalkOptions = { type WalkFn (line 55) | type WalkFn = ( FILE: packages/shared/src/ir/context.ts class Context (line 13) | class Context = any, Config extends Any... method constructor (line 58) | constructor({ method dereference (line 81) | dereference(schema: { $ref: string }) { method registerPlugin (line 98) | private registerPlugin( method registerPlugins (line 124) | registerPlugins(): ReadonlyArray { method resolveIrRef (line 132) | resolveIrRef($ref: string) { method resolveRef (line 142) | resolveRef($ref: string) { FILE: packages/shared/src/ir/graph.ts type IrTopLevelKind (line 12) | type IrTopLevelKind = (typeof irTopLevelKinds)[number]; type KindPriority (line 52) | type KindPriority = Record; FILE: packages/shared/src/ir/intents.ts type ExampleIntent (line 6) | interface ExampleIntent { class IntentContext (line 10) | class IntentContext = any> { method constructor (line 13) | constructor(spec: Spec) { method getOperation (line 17) | private getOperation(path: string, method: string): Record { type Walker (line 21) | type Walker = ( type SchemaVisitor (line 32) | interface SchemaVisitor { function createSchemaWalker (line 122) | function createSchemaWalker( function visitTyped (line 176) | function visitTyped( function childContext (line 215) | function childContext( FILE: packages/shared/src/ir/schema.ts function deduplicateSchema (line 6) | function deduplicateSchema({ FILE: packages/shared/src/ir/types.ts type SpecificationExtensions (line 17) | interface SpecificationExtensions { type IRBodyObject (line 21) | interface IRBodyObject { type IRComponentsObject (line 33) | interface IRComponentsObject { type IROperationObject (line 39) | interface IROperationObject extends SpecificationExtensions { type IRParametersObject (line 55) | interface IRParametersObject { type IRParameterObject (line 62) | interface IRParameterObject type IRPathsObject (line 90) | interface IRPathsObject { type IRPathItemObject (line 94) | interface IRPathItemObject { type IRRequestBodyObject (line 105) | interface IRRequestBodyObject extends Pick[0]; FILE: packages/shared/src/openApi/2.0.x/parser/index.ts type PathKeys (line 27) | type PathKeys = keyof T... FILE: packages/shared/src/openApi/2.0.x/parser/mediaType.ts type Content (line 5) | interface Content { FILE: packages/shared/src/openApi/2.0.x/parser/operation.ts type Operation (line 17) | interface Operation FILE: packages/shared/src/openApi/2.0.x/parser/parameter.ts type Parameter (line 12) | type Parameter = Exclude; FILE: packages/shared/src/openApi/2.0.x/types/json-schema-draft-4.ts type JsonSchemaDraft4 (line 5) | interface JsonSchemaDraft4 extends EnumExtensions { type JsonSchemaFormats (line 146) | type JsonSchemaFormats = 'date-time' | 'email' | 'hostname' | 'ipv4' | '... type JsonSchemaTypes (line 148) | type JsonSchemaTypes = 'array' | 'boolean' | 'integer' | 'number' | 'obj... FILE: packages/shared/src/openApi/2.0.x/types/openapi-spec-extensions.ts type OpenApiV2_0_X_Nullable_Extensions (line 1) | interface OpenApiV2_0_X_Nullable_Extensions { FILE: packages/shared/src/openApi/2.0.x/types/spec.ts type OpenApiV2_0_X (line 8) | interface OpenApiV2_0_X { type ContactObject (line 85) | interface ContactObject { type DefinitionsObject (line 129) | interface DefinitionsObject { type ExampleObject (line 153) | interface ExampleObject { type ExternalDocumentationObject (line 169) | interface ExternalDocumentationObject { type HeaderObject (line 195) | interface HeaderObject extends EnumExtensions, OpenApiV2_0_X_Nullable_Ex... type HeadersObject (line 301) | interface HeadersObject { type InfoObject (line 326) | interface InfoObject { type ItemsObject (line 381) | interface ItemsObject extends EnumExtensions, OpenApiV2_0_X_Nullable_Ext... type LicenseObject (line 472) | interface LicenseObject { type OperationObject (line 529) | interface OperationObject { type ParameterObject (line 686) | type ParameterObject = EnumExtensions & type ParametersDefinitionsObject (line 831) | interface ParametersDefinitionsObject { type PathItemObject (line 872) | interface PathItemObject { type PathsObject (line 934) | interface PathsObject { type ReferenceObject (line 971) | interface ReferenceObject { type ResponseObject (line 1029) | interface ResponseObject { type ResponsesDefinitionsObject (line 1071) | interface ResponsesDefinitionsObject { type ResponsesObject (line 1101) | interface ResponsesObject { type SchemaObject (line 1309) | interface SchemaObject extends JsonSchemaDraft4, OpenApiV2_0_X_Nullable_... type ScopesObject (line 1375) | interface ScopesObject { type SecurityDefinitionsObject (line 1406) | interface SecurityDefinitionsObject { type SecurityRequirementObject (line 1440) | interface SecurityRequirementObject { type SecuritySchemeObject (line 1480) | type SecuritySchemeObject = { type TagObject (line 1541) | interface TagObject { type XMLObject (line 1565) | interface XMLObject { FILE: packages/shared/src/openApi/3.0.x/index.ts type OpenApiV3_0_XTypes (line 14) | interface OpenApiV3_0_XTypes { FILE: packages/shared/src/openApi/3.0.x/parser/__tests__/operation.test.ts type ParseOperationProps (line 5) | type ParseOperationProps = Parameters[0]; FILE: packages/shared/src/openApi/3.0.x/parser/mediaType.ts type Content (line 5) | interface Content { FILE: packages/shared/src/openApi/3.0.x/parser/operation.ts type Operation (line 17) | interface Operation FILE: packages/shared/src/openApi/3.0.x/parser/schema.ts type DiscriminatorInfo (line 467) | type DiscriminatorInfo = { FILE: packages/shared/src/openApi/3.0.x/parser/server.ts function parseServers (line 4) | function parseServers({ context }: { context: Context }): void { FILE: packages/shared/src/openApi/3.0.x/types/spec.ts type SpecificationExtensions (line 10) | interface SpecificationExtensions { type OpenApiV3_0_X (line 19) | interface OpenApiV3_0_X extends SpecificationExtensions { type CallbackObject (line 61) | interface CallbackObject extends SpecificationExtensions { type ComponentsObject (line 77) | interface ComponentsObject extends SpecificationExtensions { type ContactObject (line 127) | interface ContactObject extends SpecificationExtensions { type DiscriminatorObject (line 151) | interface DiscriminatorObject { type EncodingObject (line 174) | interface EncodingObject extends SpecificationExtensions { type ExampleObject (line 215) | interface ExampleObject extends SpecificationExtensions { type ExternalDocumentationObject (line 246) | interface ExternalDocumentationObject extends SpecificationExtensions { type HeaderObject (line 269) | type HeaderObject = Omit; type InfoObject (line 290) | interface InfoObject extends SpecificationExtensions { type LicenseObject (line 327) | interface LicenseObject extends SpecificationExtensions { type LinkObject (line 353) | interface LinkObject extends SpecificationExtensions { type MediaTypeObject (line 389) | interface MediaTypeObject extends SpecificationExtensions { type OAuthFlowObject (line 415) | interface OAuthFlowObject extends SpecificationExtensions { type OAuthFlowsObject (line 439) | interface OAuthFlowsObject extends SpecificationExtensions { type OperationObject (line 465) | interface OperationObject extends SpecificationExtensions { type ParameterObject (line 564) | interface ParameterObject extends SpecificationExtensions { type PathItemObject (line 636) | interface PathItemObject extends SpecificationExtensions { type PathsObject (line 698) | interface PathsObject extends SpecificationExtensions { type ReferenceObject (line 732) | interface ReferenceObject { type RequestBodyObject (line 746) | interface RequestBodyObject extends SpecificationExtensions { type ResponseObject (line 768) | interface ResponseObject extends SpecificationExtensions { type ResponsesObject (line 800) | interface ResponsesObject extends SpecificationExtensions { type SchemaObject (line 862) | interface SchemaObject extends EnumExtensions, SpecificationExtensions { type SecurityRequirementObject (line 1099) | interface SecurityRequirementObject { type SecuritySchemeObject (line 1115) | type SecuritySchemeObject = SpecificationExtensions & { type ServerObject (line 1178) | interface ServerObject extends SpecificationExtensions { type ServerVariableObject (line 1198) | interface ServerVariableObject extends SpecificationExtensions { type TagObject (line 1225) | interface TagObject extends SpecificationExtensions { type XMLObject (line 1254) | interface XMLObject extends SpecificationExtensions { type JsonSchemaFormats (line 1277) | type JsonSchemaFormats = 'date-time' | 'email' | 'hostname' | 'ipv4' | '... type OpenApiSchemaFormats (line 1279) | type OpenApiSchemaFormats = type Format (line 1290) | type Format = JsonSchemaFormats | OpenApiSchemaFormats | AnyString; FILE: packages/shared/src/openApi/3.1.x/index.ts type OpenApiV3_1_XTypes (line 14) | interface OpenApiV3_1_XTypes { FILE: packages/shared/src/openApi/3.1.x/parser/__tests__/operation.test.ts type ParseOperationProps (line 5) | type ParseOperationProps = Parameters[0]; FILE: packages/shared/src/openApi/3.1.x/parser/mediaType.ts type Content (line 5) | interface Content { FILE: packages/shared/src/openApi/3.1.x/parser/operation.ts type Operation (line 17) | interface Operation FILE: packages/shared/src/openApi/3.1.x/parser/schema.ts type DiscriminatorInfo (line 562) | type DiscriminatorInfo = { FILE: packages/shared/src/openApi/3.1.x/types/json-schema-draft-2020-12.ts type JsonSchemaDraft2020_12 (line 8) | interface JsonSchemaDraft2020_12 type ArrayKeywords (line 159) | interface ArrayKeywords { type NumberKeywords (line 208) | interface NumberKeywords { type ObjectKeywords (line 275) | interface ObjectKeywords { type StringKeywords (line 324) | interface StringKeywords { type JsonSchemaFormats (line 339) | type JsonSchemaFormats = type JsonSchemaTypes (line 361) | type JsonSchemaTypes = 'array' | 'boolean' | 'integer' | 'null' | 'numbe... FILE: packages/shared/src/openApi/3.1.x/types/spec-extensions.ts type OpenApiSchemaExtensions (line 3) | interface OpenApiSchemaExtensions { FILE: packages/shared/src/openApi/3.1.x/types/spec.ts type SpecificationExtensions (line 9) | interface SpecificationExtensions { type OpenApiV3_1_X (line 18) | interface OpenApiV3_1_X extends SpecificationExtensions { type CallbackObject (line 142) | interface CallbackObject extends SpecificationExtensions { type ComponentsObject (line 238) | interface ComponentsObject extends SpecificationExtensions { type ContactObject (line 293) | interface ContactObject extends SpecificationExtensions { type DiscriminatorObject (line 434) | interface DiscriminatorObject extends SpecificationExtensions { type EncodingObject (line 486) | interface EncodingObject extends SpecificationExtensions { type ExampleObject (line 582) | interface ExampleObject extends SpecificationExtensions { type ExternalDocumentationObject (line 612) | interface ExternalDocumentationObject extends SpecificationExtensions { type HeaderObject (line 637) | type HeaderObject = Omit; type InfoObject (line 660) | interface InfoObject extends SpecificationExtensions { type LicenseObject (line 702) | interface LicenseObject extends SpecificationExtensions { type LinkObject (line 864) | interface LinkObject extends SpecificationExtensions { type MediaTypeObject (line 924) | interface MediaTypeObject extends SpecificationExtensions { type OAuthFlowObject (line 966) | interface OAuthFlowObject extends SpecificationExtensions { type OAuthFlowsObject (line 990) | interface OAuthFlowsObject extends SpecificationExtensions { type OperationObject (line 1058) | interface OperationObject extends SpecificationExtensions { type ParameterObject (line 1210) | interface ParameterObject extends SpecificationExtensions { type PathItemObject (line 1313) | interface PathItemObject extends SpecificationExtensions { type PathsObject (line 1413) | interface PathsObject extends SpecificationExtensions { type ReferenceObject (line 1452) | interface ReferenceObject { type RequestBodyObject (line 1518) | interface RequestBodyObject extends SpecificationExtensions { type ResponseObject (line 1594) | interface ResponseObject extends SpecificationExtensions { type ResponsesObject (line 1642) | interface ResponsesObject extends SpecificationExtensions { type SchemaObject (line 1677) | type SchemaObject = JsonSchemaDraft2020_12 & SpecificationExtensions; type SecurityRequirementObject (line 1713) | interface SecurityRequirementObject { type SecuritySchemeObject (line 1764) | type SecuritySchemeObject = SpecificationExtensions & { type ServerObject (line 1837) | interface ServerObject extends SpecificationExtensions { type ServerVariableObject (line 1857) | interface ServerVariableObject extends SpecificationExtensions { type TagObject (line 1883) | interface TagObject extends SpecificationExtensions { type XMLObject (line 2090) | interface XMLObject extends SpecificationExtensions { FILE: packages/shared/src/openApi/index.ts function parseOpenApiSpec (line 13) | function parseOpenApiSpec(context: Context): Context { FILE: packages/shared/src/openApi/shared/graph/meta.ts type ResourceMetadata (line 9) | type ResourceMetadata = { FILE: packages/shared/src/openApi/shared/locations/operation.ts type OperationPathStrategy (line 10) | type OperationPathStrategy = (operation: IR.OperationObject) => Readonly... type OperationStructureStrategy (line 17) | type OperationStructureStrategy = ( type OperationsStrategy (line 21) | type OperationsStrategy = 'byTags' | 'flat' | 'single' | OperationStruct... FILE: packages/shared/src/openApi/shared/transforms/enums.ts type EnumsConfig (line 9) | type EnumsConfig = Parser['transforms']['enums']; type NodeInfo (line 33) | type NodeInfo = { FILE: packages/shared/src/openApi/shared/transforms/propertiesRequiredByDefault.ts type NodeInfo (line 3) | type NodeInfo = { FILE: packages/shared/src/openApi/shared/transforms/readWrite.ts type OriginalSchemas (line 18) | type OriginalSchemas = Record; type SplitMapping (line 20) | type SplitMapping = Record< type SplitSchemas (line 28) | type SplitSchemas = { type ReadWriteConfig (line 37) | type ReadWriteConfig = Parser['transforms']['readWrite']; function splitDiscriminatorSchemas (line 322) | function splitDiscriminatorSchemas({ type WalkArgs (line 635) | type WalkArgs = { FILE: packages/shared/src/openApi/shared/transforms/schemas.ts type SchemaNameConfig (line 6) | type SchemaNameConfig = Parser['transforms']['schemaName']; FILE: packages/shared/src/openApi/shared/transforms/utils.ts type Obj (line 1) | type Obj = Record | Set | ReadonlyArray = { type Filters (line 60) | type Filters = FiltersConfigToState>; type SetAndRegExps (line 62) | interface SetAndRegExps { type CollectFiltersSetFromRegExps (line 88) | interface CollectFiltersSetFromRegExps { FILE: packages/shared/src/openApi/shared/utils/graph.ts type Scope (line 13) | type Scope = 'normal' | 'read' | 'write'; type Cache (line 34) | interface Cache { type PointerDependenciesResult (line 40) | type PointerDependenciesResult = { function buildGraph (line 362) | function buildGraph( FILE: packages/shared/src/openApi/shared/utils/operation.ts function operationToId (line 46) | function operationToId({ FILE: packages/shared/src/openApi/shared/utils/patch.ts function patchOpenApiSpec (line 4) | async function patchOpenApiSpec({ FILE: packages/shared/src/openApi/shared/utils/validator.ts type ValidatorIssue (line 5) | interface ValidatorIssue { type ValidatorResult (line 34) | interface ValidatorResult { FILE: packages/shared/src/openApi/types.ts type V2_0_X (line 7) | type V2_0_X = OpenApiV2_0_X; type V3_0_X (line 9) | type V3_0_X = OpenApiV3_0_X; type V3_1_X (line 11) | type V3_1_X = OpenApiV3_1_X; type V2_0_X (line 15) | type V2_0_X = OpenApiV2_0_XTypes['InfoObject']; type V3_0_X (line 17) | type V3_0_X = OpenApiV3_0_XTypes['InfoObject']; type V3_1_X (line 19) | type V3_1_X = OpenApiV3_1_XTypes['InfoObject']; type V2_0_X (line 23) | type V2_0_X = OpenApiV2_0_XTypes['OperationObject']; type V3_0_X (line 25) | type V3_0_X = OpenApiV3_0_XTypes['OperationObject']; type V3_1_X (line 27) | type V3_1_X = OpenApiV3_1_XTypes['OperationObject']; type V3_0_X (line 31) | type V3_0_X = type V3_1_X (line 35) | type V3_1_X = type V3_0_X (line 41) | type V3_0_X = type V3_1_X (line 45) | type V3_1_X = type V3_0_X (line 51) | type V3_0_X = OpenApiV3_0_XTypes['ResponseObject'] | OpenApiV3_0_XTypes[... type V3_1_X (line 53) | type V3_1_X = OpenApiV3_1_XTypes['ResponseObject'] | OpenApiV3_1_XTypes[... type V2_0_X (line 57) | type V2_0_X = OpenApiV2_0_XTypes['SchemaObject']; type V3_0_X (line 59) | type V3_0_X = OpenApiV3_0_XTypes['SchemaObject']; type V3_1_X (line 61) | type V3_1_X = OpenApiV3_1_XTypes['SchemaObject']; FILE: packages/shared/src/parser/hooks.ts type Hooks (line 9) | type Hooks = { type GetNameContext (line 226) | interface GetNameContext { FILE: packages/shared/src/plugins/shared/types/instance.ts type BaseEvent (line 4) | type BaseEvent = { type WalkEvents (line 19) | type WalkEvents = BaseEvent & type WalkEvent (line 57) | type WalkEvent = Extract { method constructor (line 99) | constructor( method external (line 118) | external( method forEach (line 161) | forEach( method getPlugin (line 277) | getPlugin( method getPluginOrThrow (line 291) | getPluginOrThrow( method getSymbol (line 299) | getSymbol(identifier: SymbolIdentifier): Symbol | undefined { method intent (line 317) | intent(intent: ExampleIntent): void { method isSymbolRegistered (line 321) | isSymbolRegistered(identifier: SymbolIdentifier): boolean { method node (line 332) | node( method querySymbol (line 347) | querySymbol(filter: SymbolMeta): Symbol | undefined { method referenceSymbol (line 351) | referenceSymbol(meta: SymbolMeta): Symbol { method registerSymbol (line 358) | registerSymbol(symbol: SymbolIn): Symbol { method run (line 365) | async run(): Promise { method symbol (line 375) | symbol(name: SymbolIn['name'], symbol?: Omit): Symbo... method symbolOnce (line 404) | symbolOnce(name: SymbolIn['name'], symbol?: Omit): S... method buildEventHooks (line 417) | private buildEventHooks(): EventHooks { method forEachError (line 438) | private forEachError(error: unknown, event: WalkEvent) { method getSymbolExportFromFilePath (line 449) | private getSymbolExportFromFilePath(symbol: Symbol): ReadonlyArray; type PluginBaseConfig (line 38) | type PluginBaseConfig = UserIndexExportOption & { type Config (line 53) | type Config = Pick & { type Comments (line 80) | type Comments = CommentsOption; type UserComments (line 81) | type UserComments = UserCommentsOption; type Exports (line 83) | type Exports = IndexExportOption; type UserExports (line 84) | type UserExports = UserIndexExportOption; type Hooks (line 89) | type Hooks = Pick; type Name (line 91) | interface Name { type Resolvers (line 102) | type Resolvers = Record { FILE: packages/shared/src/utils/input/scalar.ts function getRegistryUrl (line 14) | function getRegistryUrl(organization: string, project: string): string { type Parsed (line 18) | type Parsed = { function parseShorthand (line 32) | function parseShorthand(shorthand: string): Parsed { function inputToScalarPath (line 65) | function inputToScalarPath(input: string): Partial { FILE: packages/shared/src/utils/minHeap.ts class MinHeap (line 1) | class MinHeap { method constructor (line 4) | constructor(public declIndex: Map) {} method isEmpty (line 6) | isEmpty(): boolean { method pop (line 10) | pop(): string | undefined { method push (line 20) | push(item: string): void { method bubbleUp (line 25) | private bubbleUp(index: number): void { method sinkDown (line 38) | private sinkDown(index: number): void { FILE: packages/shared/src/utils/naming/naming.ts function toCase (line 88) | function toCase( function resolveNaming (line 173) | function resolveNaming(rule: NamingRule | undefined): NamingConfig { function applyNaming (line 188) | function applyNaming(value: string, config: NamingConfig): string { FILE: packages/shared/src/utils/naming/types.ts type Casing (line 6) | type Casing = type NameTransformer (line 18) | type NameTransformer = MaybeFunc<(name: string) => string>; type NamingConfig (line 23) | interface NamingConfig { type NamingRule (line 45) | type NamingRule = NameTransformer | NamingConfig; FILE: packages/shared/src/utils/path.ts constant STRUCTURAL_ROLE (line 6) | const STRUCTURAL_ROLE: Record = { constant STRUCTURAL_SUFFIX (line 17) | const STRUCTURAL_SUFFIX: Record = { type RootContextConfig (line 21) | type RootContextConfig = { constant ROOT_CONTEXT (line 31) | const ROOT_CONTEXT: Record = { function sanitizeSegment (line 43) | function sanitizeSegment(segment: string | number): string { type PathToNameOptions (line 58) | interface PathToNameOptions { function pathToName (line 82) | function pathToName( FILE: packages/shared/src/utils/ref.ts function refToName (line 7) | function refToName($ref: string): string { function encodeJsonPointerSegment (line 27) | function encodeJsonPointerSegment(segment: string | number): string { function jsonPointerToPath (line 42) | function jsonPointerToPath(pointer: string): ReadonlyArray { function normalizeJsonPointer (line 69) | function normalizeJsonPointer(pointer: string): string { function pathToJsonPointer (line 89) | function pathToJsonPointer(path: ReadonlyArray): string { function isTopLevelComponent (line 107) | function isTopLevelComponent(refOrPath: string | ReadonlyArray({ $ref, spec }: { $ref: string; spec: Record; type AnyString (line 9) | type AnyString = string & {}; type ArrayOnly (line 14) | type ArrayOnly = { type DeepPartial (line 21) | type DeepPartial = { type LazyOrAsync (line 32) | type LazyOrAsync = T | (() => MaybePromise); type MaybeArray (line 37) | type MaybeArray = T | ReadonlyArray; type MaybeFunc (line 42) | type MaybeFunc) => any> = T | ReturnType; type MaybePromise (line 47) | type MaybePromise = T | Promise; type ReadonlyArrayOnly (line 52) | type ReadonlyArrayOnly = { type ToArray (line 59) | type ToArray = T extends ReadonlyArray ? Array : T; type ToReadonlyArray (line 64) | type ToReadonlyArray = T extends ReadonlyArray ? ReadonlyArr... FILE: packages/vite-plugin/src/index.ts function heyApiPlugin (line 3) | function heyApiPlugin(options?: { FILE: packages/vite-plugin/tsdown.config.ts method banner (line 4) | banner(ctx) {