@@ -38,24 +38,29 @@ if (EXPORT_DOCS) {
3838 } )
3939 const { data : schemas , error : schemasError } = await pgMeta . schemas . list ( )
4040 const { data : tables , error : tablesError } = await pgMeta . tables . list ( {
41- includedSchemas : GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
41+ includedSchemas :
42+ GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
4243 includeColumns : false ,
4344 } )
4445 const { data : views , error : viewsError } = await pgMeta . views . list ( {
45- includedSchemas : GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
46+ includedSchemas :
47+ GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
4648 includeColumns : false ,
4749 } )
4850 const { data : materializedViews , error : materializedViewsError } =
4951 await pgMeta . materializedViews . list ( {
50- includedSchemas : GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
52+ includedSchemas :
53+ GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
5154 includeColumns : false ,
5255 } )
5356 const { data : columns , error : columnsError } = await pgMeta . columns . list ( {
54- includedSchemas : GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
57+ includedSchemas :
58+ GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
5559 } )
5660 const { data : relationships , error : relationshipsError } = await pgMeta . relationships . list ( )
5761 const { data : functions , error : functionsError } = await pgMeta . functions . list ( {
58- includedSchemas : GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
62+ includedSchemas :
63+ GENERATE_TYPES_INCLUDED_SCHEMAS . length > 0 ? GENERATE_TYPES_INCLUDED_SCHEMAS : undefined ,
5964 } )
6065 const { data : types , error : typesError } = await pgMeta . types . list ( {
6166 includeArrayTypes : true ,
0 commit comments