···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+export type Foo = {
44+ foo: string;
55+};
66+77+export type Bar = Foo & {};
88+99+export type Baz = Foo & {
1010+ bar: string;
1111+};
1212+1313+export type ClientOptions = {
1414+ baseUrl: string;
1515+};
···11+// This file is auto-generated by @hey-api/openapi-ts
22+33+export type Foo = {
44+ foo: string;
55+};
66+77+export type Bar = Foo & {};
88+99+export type Baz = Foo & {
1010+ bar: string;
1111+};
1212+1313+export type ClientOptions = {
1414+ baseUrl: string;
1515+};
···66 $ref?: string;
77 circularReferenceTracker: Set<string>;
88 /**
99+ * True if current schema is part of an allOf composition. This is used to
1010+ * avoid emitting [key: string]: never for empty objects with
1111+ * additionalProperties: false inside allOf, which would override inherited
1212+ * properties from other schemas in the composition.
1313+ */
1414+ inAllOf?: boolean;
1515+ /**
916 * True if current schema is an object property. This is used to mark schemas
1017 * as "both" access scopes, i.e. they can be used in both payloads and
1118 * responses. Without this field, we'd be overusing the "both" value which