@@ -2905,7 +2905,7 @@ import type { ModelWithString } from './ModelWithString';
2905
2905
/**
2906
2906
* This is a model that extends another model
2907
2907
*/
2908
- export type ModelThatExtends = ( & ModelWithString & {
2908
+ export type ModelThatExtends = (ModelWithString & {
2909
2909
propExtendsA?: string,
2910
2910
propExtendsB?: ModelWithString,
2911
2911
});"
@@ -2922,7 +2922,7 @@ import type { ModelWithString } from './ModelWithString';
2922
2922
/**
2923
2923
* This is a model that extends another model
2924
2924
*/
2925
- export type ModelThatExtendsExtends = ( & ModelWithString & ModelThatExtends & {
2925
+ export type ModelThatExtendsExtends = (ModelWithString & ModelThatExtends & {
2926
2926
propExtendsC?: string,
2927
2927
propExtendsD?: ModelWithString,
2928
2928
});"
@@ -2941,7 +2941,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
2941
2941
* This is a model with one property with a 'all of' relationship
2942
2942
*/
2943
2943
export interface ModelWithAllOfAndNullable {
2944
- propA?: ( & {
2944
+ propA?: ({
2945
2945
boolean?: boolean,
2946
2946
} & ModelWithEnum & ModelWithArray & ModelWithDictionary) | null;
2947
2947
}
@@ -2962,7 +2962,7 @@ import type { ModelWithString } from './ModelWithString';
2962
2962
* This is a model with one property with a 'any of' relationship
2963
2963
*/
2964
2964
export interface ModelWithAnyOf {
2965
- propA?: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
2965
+ propA?: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
2966
2966
}
2967
2967
"
2968
2968
`;
@@ -2980,7 +2980,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
2980
2980
* This is a model with one property with a 'any of' relationship
2981
2981
*/
2982
2982
export interface ModelWithAnyOfAndNullable {
2983
- propA?: ( | {
2983
+ propA?: ({
2984
2984
boolean?: boolean,
2985
2985
} | ModelWithEnum | ModelWithArray | ModelWithDictionary) | null;
2986
2986
}
@@ -3245,7 +3245,7 @@ import type { ModelWithString } from './ModelWithString';
3245
3245
* This is a model with one property with a 'one of' relationship
3246
3246
*/
3247
3247
export interface ModelWithOneOf {
3248
- propA?: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3248
+ propA?: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary);
3249
3249
}
3250
3250
"
3251
3251
`;
@@ -3263,7 +3263,7 @@ import type { ModelWithEnum } from './ModelWithEnum';
3263
3263
* This is a model with one property with a 'one of' relationship
3264
3264
*/
3265
3265
export interface ModelWithOneOfAndNullable {
3266
- propA?: ( | {
3266
+ propA?: ({
3267
3267
boolean?: boolean,
3268
3268
} | ModelWithEnum | ModelWithArray | ModelWithDictionary) | null;
3269
3269
}
@@ -4344,7 +4344,7 @@ export class ComplexService {
4344
4344
readonly type: 'Monkey' | 'Horse' | 'Bird',
4345
4345
listOfModels?: Array<ModelWithString> | null,
4346
4346
listOfStrings?: Array<string> | null,
4347
- parameters: ( | ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary),
4347
+ parameters: (ModelWithString | ModelWithEnum | ModelWithArray | ModelWithDictionary),
4348
4348
readonly user?: {
4349
4349
readonly id?: number,
4350
4350
readonly name?: string | null,
0 commit comments