···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+export type { ClientOptions, GetTestData, GetTestResponse, GetTestResponses, User, UserV1User, UserV2User } from './types.gen';
···75757676 // Skip if name doesn't change
7777 if (newName === oldName) {
7878- newNames.add(oldName);
7978 continue;
8079 }
81808282- // Skip if new name collides with an existing schema or another renamed schema
8383- if (oldName in schemasObj && newName in schemasObj && oldName !== newName) {
8484- // Collision with existing schema - skip rename
8585- newNames.add(oldName);
8181+ // Skip if new name collides with an existing schema
8282+ if (newName in schemasObj) {
8683 continue;
8784 }
88858686+ // Skip if new name collides with another renamed schema
8987 if (newNames.has(newName)) {
9090- // Collision with another renamed schema - skip rename
9191- newNames.add(oldName);
9288 continue;
9389 }
9490