@@ -496,6 +496,7 @@ export type Database = {
496496 hypercert_id : string
497497 id : string
498498 item_ids : number [ ]
499+ log_index : number
499500 seller : string
500501 strategy_id : number
501502 transaction_hash : string
@@ -513,6 +514,7 @@ export type Database = {
513514 hypercert_id : string
514515 id ?: string
515516 item_ids : number [ ]
517+ log_index : number
516518 seller : string
517519 strategy_id : number
518520 transaction_hash : string
@@ -530,6 +532,7 @@ export type Database = {
530532 hypercert_id ?: string
531533 id ?: string
532534 item_ids ?: number [ ]
535+ log_index ?: number
533536 seller ?: string
534537 strategy_id ?: number
535538 transaction_hash ?: string
@@ -709,6 +712,7 @@ export type Database = {
709712 owner : string | null
710713 owner_id : string | null
711714 public : boolean | null
715+ type : Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
712716 updated_at : string | null
713717 }
714718 Insert : {
@@ -721,6 +725,7 @@ export type Database = {
721725 owner ?: string | null
722726 owner_id ?: string | null
723727 public ?: boolean | null
728+ type ?: Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
724729 updated_at ?: string | null
725730 }
726731 Update : {
@@ -733,10 +738,112 @@ export type Database = {
733738 owner ?: string | null
734739 owner_id ?: string | null
735740 public ?: boolean | null
741+ type ?: Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
736742 updated_at ?: string | null
737743 }
738744 Relationships : [ ]
739745 }
746+ buckets_analytics : {
747+ Row : {
748+ created_at : string
749+ format : string
750+ id : string
751+ type : Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
752+ updated_at : string
753+ }
754+ Insert : {
755+ created_at ?: string
756+ format ?: string
757+ id : string
758+ type ?: Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
759+ updated_at ?: string
760+ }
761+ Update : {
762+ created_at ?: string
763+ format ?: string
764+ id ?: string
765+ type ?: Database [ "storage" ] [ "Enums" ] [ "buckettype" ]
766+ updated_at ?: string
767+ }
768+ Relationships : [ ]
769+ }
770+ iceberg_namespaces : {
771+ Row : {
772+ bucket_id : string
773+ created_at : string
774+ id : string
775+ name : string
776+ updated_at : string
777+ }
778+ Insert : {
779+ bucket_id : string
780+ created_at ?: string
781+ id ?: string
782+ name : string
783+ updated_at ?: string
784+ }
785+ Update : {
786+ bucket_id ?: string
787+ created_at ?: string
788+ id ?: string
789+ name ?: string
790+ updated_at ?: string
791+ }
792+ Relationships : [
793+ {
794+ foreignKeyName : "iceberg_namespaces_bucket_id_fkey"
795+ columns : [ "bucket_id" ]
796+ isOneToOne : false
797+ referencedRelation : "buckets_analytics"
798+ referencedColumns : [ "id" ]
799+ } ,
800+ ]
801+ }
802+ iceberg_tables : {
803+ Row : {
804+ bucket_id : string
805+ created_at : string
806+ id : string
807+ location : string
808+ name : string
809+ namespace_id : string
810+ updated_at : string
811+ }
812+ Insert : {
813+ bucket_id : string
814+ created_at ?: string
815+ id ?: string
816+ location : string
817+ name : string
818+ namespace_id : string
819+ updated_at ?: string
820+ }
821+ Update : {
822+ bucket_id ?: string
823+ created_at ?: string
824+ id ?: string
825+ location ?: string
826+ name ?: string
827+ namespace_id ?: string
828+ updated_at ?: string
829+ }
830+ Relationships : [
831+ {
832+ foreignKeyName : "iceberg_tables_bucket_id_fkey"
833+ columns : [ "bucket_id" ]
834+ isOneToOne : false
835+ referencedRelation : "buckets_analytics"
836+ referencedColumns : [ "id" ]
837+ } ,
838+ {
839+ foreignKeyName : "iceberg_tables_namespace_id_fkey"
840+ columns : [ "namespace_id" ]
841+ isOneToOne : false
842+ referencedRelation : "iceberg_namespaces"
843+ referencedColumns : [ "id" ]
844+ } ,
845+ ]
846+ }
740847 migrations : {
741848 Row : {
742849 executed_at : string | null
@@ -764,6 +871,7 @@ export type Database = {
764871 created_at : string | null
765872 id : string
766873 last_accessed_at : string | null
874+ level : number | null
767875 metadata : Json | null
768876 name : string | null
769877 owner : string | null
@@ -778,6 +886,7 @@ export type Database = {
778886 created_at ?: string | null
779887 id ?: string
780888 last_accessed_at ?: string | null
889+ level ?: number | null
781890 metadata ?: Json | null
782891 name ?: string | null
783892 owner ?: string | null
@@ -792,6 +901,7 @@ export type Database = {
792901 created_at ?: string | null
793902 id ?: string
794903 last_accessed_at ?: string | null
904+ level ?: number | null
795905 metadata ?: Json | null
796906 name ?: string | null
797907 owner ?: string | null
@@ -811,6 +921,38 @@ export type Database = {
811921 } ,
812922 ]
813923 }
924+ prefixes : {
925+ Row : {
926+ bucket_id : string
927+ created_at : string | null
928+ level : number
929+ name : string
930+ updated_at : string | null
931+ }
932+ Insert : {
933+ bucket_id : string
934+ created_at ?: string | null
935+ level ?: number
936+ name : string
937+ updated_at ?: string | null
938+ }
939+ Update : {
940+ bucket_id ?: string
941+ created_at ?: string | null
942+ level ?: number
943+ name ?: string
944+ updated_at ?: string | null
945+ }
946+ Relationships : [
947+ {
948+ foreignKeyName : "prefixes_bucketId_fkey"
949+ columns : [ "bucket_id" ]
950+ isOneToOne : false
951+ referencedRelation : "buckets"
952+ referencedColumns : [ "id" ]
953+ } ,
954+ ]
955+ }
814956 s3_multipart_uploads : {
815957 Row : {
816958 bucket_id : string
@@ -914,6 +1056,13 @@ export type Database = {
9141056 [ _ in never ] : never
9151057 }
9161058 Functions : {
1059+ add_prefixes : {
1060+ Args : {
1061+ _bucket_id : string
1062+ _name : string
1063+ }
1064+ Returns : undefined
1065+ }
9171066 can_insert_object : {
9181067 Args : {
9191068 bucketid : string
@@ -923,6 +1072,13 @@ export type Database = {
9231072 }
9241073 Returns : undefined
9251074 }
1075+ delete_prefix : {
1076+ Args : {
1077+ _bucket_id : string
1078+ _name : string
1079+ }
1080+ Returns : boolean
1081+ }
9261082 extension : {
9271083 Args : {
9281084 name : string
@@ -941,6 +1097,24 @@ export type Database = {
9411097 }
9421098 Returns : string [ ]
9431099 }
1100+ get_level : {
1101+ Args : {
1102+ name : string
1103+ }
1104+ Returns : number
1105+ }
1106+ get_prefix : {
1107+ Args : {
1108+ name : string
1109+ }
1110+ Returns : string
1111+ }
1112+ get_prefixes : {
1113+ Args : {
1114+ name : string
1115+ }
1116+ Returns : string [ ]
1117+ }
9441118 get_size_by_bucket : {
9451119 Args : Record < PropertyKey , never >
9461120 Returns : {
@@ -1003,9 +1177,66 @@ export type Database = {
10031177 metadata : Json
10041178 } [ ]
10051179 }
1180+ search_legacy_v1 : {
1181+ Args : {
1182+ prefix : string
1183+ bucketname : string
1184+ limits ?: number
1185+ levels ?: number
1186+ offsets ?: number
1187+ search ?: string
1188+ sortcolumn ?: string
1189+ sortorder ?: string
1190+ }
1191+ Returns : {
1192+ name : string
1193+ id : string
1194+ updated_at : string
1195+ created_at : string
1196+ last_accessed_at : string
1197+ metadata : Json
1198+ } [ ]
1199+ }
1200+ search_v1_optimised : {
1201+ Args : {
1202+ prefix : string
1203+ bucketname : string
1204+ limits ?: number
1205+ levels ?: number
1206+ offsets ?: number
1207+ search ?: string
1208+ sortcolumn ?: string
1209+ sortorder ?: string
1210+ }
1211+ Returns : {
1212+ name : string
1213+ id : string
1214+ updated_at : string
1215+ created_at : string
1216+ last_accessed_at : string
1217+ metadata : Json
1218+ } [ ]
1219+ }
1220+ search_v2 : {
1221+ Args : {
1222+ prefix : string
1223+ bucket_name : string
1224+ limits ?: number
1225+ levels ?: number
1226+ start_after ?: string
1227+ }
1228+ Returns : {
1229+ key : string
1230+ name : string
1231+ id : string
1232+ updated_at : string
1233+ created_at : string
1234+ metadata : Json
1235+ } [ ]
1236+ }
10061237 }
10071238 Enums : {
1008- [ _ in never ] : never
1239+ buckettype : "STANDARD" | "ANALYTICS"
10091240 }
10101241 CompositeTypes : {
10111242 [ _ in never ] : never
0 commit comments