@@ -138,7 +138,11 @@ export class PythonRenderer extends ConvenienceRenderer {
138
138
139
139
if ( hasNull !== null ) {
140
140
let rest : string [ ] = [ ] ;
141
- if ( ! this . getAlphabetizeProperties ( ) && this . pyOptions . features . dataClasses && _isRootTypeDef ) {
141
+ if (
142
+ ! this . getAlphabetizeProperties ( ) &&
143
+ ( this . pyOptions . features . dataClasses || this . pyOptions . pydanticBaseModel ) &&
144
+ _isRootTypeDef
145
+ ) {
142
146
// Only push "= None" if this is a root level type def
143
147
// otherwise we may get type defs like List[Optional[int] = None]
144
148
// which are invalid
@@ -177,6 +181,9 @@ export class PythonRenderer extends ConvenienceRenderer {
177
181
178
182
protected declarationLine ( t : Type ) : Sourcelike {
179
183
if ( t instanceof ClassType ) {
184
+ if ( this . pyOptions . pydanticBaseModel ) {
185
+ return [ "class " , this . nameForNamedType ( t ) , "(" , this . withImport ( "pydantic" , "BaseModel" ) , "):" ] ;
186
+ }
180
187
return [ "class " , this . nameForNamedType ( t ) , ":" ] ;
181
188
}
182
189
@@ -196,7 +203,7 @@ export class PythonRenderer extends ConvenienceRenderer {
196
203
}
197
204
198
205
protected emitClassMembers ( t : ClassType ) : void {
199
- if ( this . pyOptions . features . dataClasses ) return ;
206
+ if ( this . pyOptions . features . dataClasses || this . pyOptions . pydanticBaseModel ) return ;
200
207
201
208
const args : Sourcelike [ ] = [ ] ;
202
209
this . forEachClassProperty ( t , "none" , ( name , _ , cp ) => {
@@ -236,7 +243,7 @@ export class PythonRenderer extends ConvenienceRenderer {
236
243
properties : ReadonlyMap < string , ClassProperty > ,
237
244
propertyNames : ReadonlyMap < string , Name >
238
245
) : ReadonlyMap < string , ClassProperty > {
239
- if ( this . pyOptions . features . dataClasses ) {
246
+ if ( this . pyOptions . features . dataClasses || this . pyOptions . pydanticBaseModel ) {
240
247
return mapSortBy ( properties , ( p : ClassProperty ) => {
241
248
return ( p . type instanceof UnionType && nullableFromUnion ( p . type ) != null ) || p . isOptional ? 1 : 0 ;
242
249
} ) ;
@@ -246,7 +253,7 @@ export class PythonRenderer extends ConvenienceRenderer {
246
253
}
247
254
248
255
protected emitClass ( t : ClassType ) : void {
249
- if ( this . pyOptions . features . dataClasses ) {
256
+ if ( this . pyOptions . features . dataClasses && ! this . pyOptions . pydanticBaseModel ) {
250
257
this . emitLine ( "@" , this . withImport ( "dataclasses" , "dataclass" ) ) ;
251
258
}
252
259
0 commit comments