@@ -100,9 +100,12 @@ export type Database = {
100
100
...schemaFunctions
101
101
. filter ( ( fn ) => fn . argument_types === table . name )
102
102
. map ( ( fn ) => {
103
- const pgType = types . find ( ( { id } ) => id === fn . return_type_id )
104
- const type = pgTypeToTsType ( pgType ?. name , types , schemas )
105
- return `${ JSON . stringify ( fn . name ) } : ${ type } | null`
103
+ const type = types . find ( ( { id } ) => id === fn . return_type_id )
104
+ let tsType = 'unknown'
105
+ if ( type ) {
106
+ tsType = pgTypeToTsType ( type . name , types , schemas )
107
+ }
108
+ return `${ JSON . stringify ( fn . name ) } : ${ tsType } | null`
106
109
} ) ,
107
110
] }
108
111
}
@@ -284,9 +287,12 @@ export type Database = {
284
287
}
285
288
286
289
const argsNameAndType = inArgs . map ( ( { name, type_id, has_default } ) => {
287
- const pgType = types . find ( ( { id } ) => id === type_id )
288
- const type = pgTypeToTsType ( pgType ?. name , types , schemas )
289
- return { name, type, has_default }
290
+ const type = types . find ( ( { id } ) => id === type_id )
291
+ let tsType = 'unknown'
292
+ if ( type ) {
293
+ tsType = pgTypeToTsType ( type . name , types , schemas )
294
+ }
295
+ return { name, type : tsType , has_default }
290
296
} )
291
297
292
298
return `{
@@ -301,9 +307,12 @@ export type Database = {
301
307
const tableArgs = args . filter ( ( { mode } ) => mode === 'table' )
302
308
if ( tableArgs . length > 0 ) {
303
309
const argsNameAndType = tableArgs . map ( ( { name, type_id } ) => {
304
- const pgType = types . find ( ( { id } ) => id === type_id )
305
- const type = pgTypeToTsType ( pgType ?. name , types , schemas )
306
- return { name, type }
310
+ const type = types . find ( ( { id } ) => id === type_id )
311
+ let tsType = 'unknown'
312
+ if ( type ) {
313
+ tsType = pgTypeToTsType ( type . name , types , schemas )
314
+ }
315
+ return { name, type : tsType }
307
316
} )
308
317
309
318
return `{
@@ -330,9 +339,13 @@ export type Database = {
330
339
}`
331
340
}
332
341
333
- // Case 3: returns base/composite/enum type.
342
+ // Case 3: returns base/array/ composite/enum type.
334
343
const type = types . find ( ( { id } ) => id === return_type_id )
335
- return pgTypeToTsType ( type ?. name , types , schemas )
344
+ if ( type ) {
345
+ return pgTypeToTsType ( type . name , types , schemas )
346
+ }
347
+
348
+ return 'unknown'
336
349
} ) ( ) } )${ is_set_returning_function ? '[]' : '' }
337
350
}`
338
351
)
@@ -362,9 +375,12 @@ export type Database = {
362
375
( { name, attributes } ) =>
363
376
`${ JSON . stringify ( name ) } : {
364
377
${ attributes . map ( ( { name, type_id } ) => {
365
- const pgType = types . find ( ( { id } ) => id === type_id )
366
- const type = pgTypeToTsType ( pgType ?. name , types , schemas )
367
- return `${ JSON . stringify ( name ) } : ${ type } `
378
+ const type = types . find ( ( { id } ) => id === type_id )
379
+ let tsType = 'unknown'
380
+ if ( type ) {
381
+ tsType = pgTypeToTsType ( type . name , types , schemas )
382
+ }
383
+ return `${ JSON . stringify ( name ) } : ${ tsType } `
368
384
} ) }
369
385
}`
370
386
)
@@ -464,13 +480,11 @@ export type Enums<
464
480
465
481
// TODO: Make this more robust. Currently doesn't handle range types - returns them as unknown.
466
482
const pgTypeToTsType = (
467
- pgType : string | undefined ,
483
+ pgType : string ,
468
484
types : PostgresType [ ] ,
469
485
schemas : PostgresSchema [ ]
470
486
) : string => {
471
- if ( pgType === undefined ) {
472
- return 'unknown'
473
- } else if ( pgType === 'bool' ) {
487
+ if ( pgType === 'bool' ) {
474
488
return 'boolean'
475
489
} else if ( [ 'int2' , 'int4' , 'int8' , 'float4' , 'float8' , 'numeric' ] . includes ( pgType ) ) {
476
490
return 'number'
0 commit comments