@@ -132,6 +132,13 @@ export type Database = {
132132 referencedRelation : "collections" ;
133133 referencedColumns : [ "id" ] ;
134134 } ,
135+ {
136+ foreignKeyName : "collection_admins_collection_id_fkey" ;
137+ columns : [ "collection_id" ] ;
138+ isOneToOne : false ;
139+ referencedRelation : "collections_with_admins" ;
140+ referencedColumns : [ "id" ] ;
141+ } ,
135142 ] ;
136143 } ;
137144 collection_blueprints : {
@@ -172,6 +179,13 @@ export type Database = {
172179 referencedRelation : "collections" ;
173180 referencedColumns : [ "id" ] ;
174181 } ,
182+ {
183+ foreignKeyName : "collection_blueprints_collection_id_fkey" ;
184+ columns : [ "collection_id" ] ;
185+ isOneToOne : false ;
186+ referencedRelation : "collections_with_admins" ;
187+ referencedColumns : [ "id" ] ;
188+ } ,
175189 ] ;
176190 } ;
177191 collections : {
@@ -307,6 +321,13 @@ export type Database = {
307321 referencedRelation : "hyperboards" ;
308322 referencedColumns : [ "id" ] ;
309323 } ,
324+ {
325+ foreignKeyName : "hyperboard_admins_hyperboard_id_fkey" ;
326+ columns : [ "hyperboard_id" ] ;
327+ isOneToOne : false ;
328+ referencedRelation : "hyperboards_with_admins" ;
329+ referencedColumns : [ "id" ] ;
330+ } ,
310331 ] ;
311332 } ;
312333 hyperboard_blueprint_metadata : {
@@ -346,13 +367,27 @@ export type Database = {
346367 referencedRelation : "collections" ;
347368 referencedColumns : [ "id" ] ;
348369 } ,
370+ {
371+ foreignKeyName : "hyperboard_blueprint_metadata_collection_id_fkey" ;
372+ columns : [ "collection_id" ] ;
373+ isOneToOne : false ;
374+ referencedRelation : "collections_with_admins" ;
375+ referencedColumns : [ "id" ] ;
376+ } ,
349377 {
350378 foreignKeyName : "hyperboard_blueprint_metadata_hyperboard_id_fkey" ;
351379 columns : [ "hyperboard_id" ] ;
352380 isOneToOne : false ;
353381 referencedRelation : "hyperboards" ;
354382 referencedColumns : [ "id" ] ;
355383 } ,
384+ {
385+ foreignKeyName : "hyperboard_blueprint_metadata_hyperboard_id_fkey" ;
386+ columns : [ "hyperboard_id" ] ;
387+ isOneToOne : false ;
388+ referencedRelation : "hyperboards_with_admins" ;
389+ referencedColumns : [ "id" ] ;
390+ } ,
356391 ] ;
357392 } ;
358393 hyperboard_collections : {
@@ -385,13 +420,27 @@ export type Database = {
385420 referencedRelation : "hyperboards" ;
386421 referencedColumns : [ "id" ] ;
387422 } ,
423+ {
424+ foreignKeyName : "hyperboard_registries_hyperboard_id_fkey" ;
425+ columns : [ "hyperboard_id" ] ;
426+ isOneToOne : false ;
427+ referencedRelation : "hyperboards_with_admins" ;
428+ referencedColumns : [ "id" ] ;
429+ } ,
388430 {
389431 foreignKeyName : "hyperboard_registries_registries_id_fk" ;
390432 columns : [ "collection_id" ] ;
391433 isOneToOne : false ;
392434 referencedRelation : "collections" ;
393435 referencedColumns : [ "id" ] ;
394436 } ,
437+ {
438+ foreignKeyName : "hyperboard_registries_registries_id_fk" ;
439+ columns : [ "collection_id" ] ;
440+ isOneToOne : false ;
441+ referencedRelation : "collections_with_admins" ;
442+ referencedColumns : [ "id" ] ;
443+ } ,
395444 ] ;
396445 } ;
397446 hyperboard_hypercert_metadata : {
@@ -424,13 +473,27 @@ export type Database = {
424473 referencedRelation : "collections" ;
425474 referencedColumns : [ "id" ] ;
426475 } ,
476+ {
477+ foreignKeyName : "hyperboard_hypercert_metadata_collection_id_fkey" ;
478+ columns : [ "collection_id" ] ;
479+ isOneToOne : false ;
480+ referencedRelation : "collections_with_admins" ;
481+ referencedColumns : [ "id" ] ;
482+ } ,
427483 {
428484 foreignKeyName : "hyperboard_hypercert_metadata_hyperboard_id_fkey" ;
429485 columns : [ "hyperboard_id" ] ;
430486 isOneToOne : false ;
431487 referencedRelation : "hyperboards" ;
432488 referencedColumns : [ "id" ] ;
433489 } ,
490+ {
491+ foreignKeyName : "hyperboard_hypercert_metadata_hyperboard_id_fkey" ;
492+ columns : [ "hyperboard_id" ] ;
493+ isOneToOne : false ;
494+ referencedRelation : "hyperboards_with_admins" ;
495+ referencedColumns : [ "id" ] ;
496+ } ,
434497 {
435498 foreignKeyName : "hyperboard_hypercert_metadata_hypercert_id_collection_id_fkey" ;
436499 columns : [ "hypercert_id" , "collection_id" ] ;
@@ -494,6 +557,13 @@ export type Database = {
494557 referencedRelation : "collections" ;
495558 referencedColumns : [ "id" ] ;
496559 } ,
560+ {
561+ foreignKeyName : "claims_registry_id_fkey" ;
562+ columns : [ "collection_id" ] ;
563+ isOneToOne : false ;
564+ referencedRelation : "collections_with_admins" ;
565+ referencedColumns : [ "id" ] ;
566+ } ,
497567 ] ;
498568 } ;
499569 marketplace_order_nonces : {
@@ -690,6 +760,37 @@ export type Database = {
690760 } ;
691761 Relationships : [ ] ;
692762 } ;
763+ collections_with_admins : {
764+ Row : {
765+ admin_address : string | null ;
766+ admin_chain_id : number | null ;
767+ avatar : string | null ;
768+ chain_ids : number [ ] | null ;
769+ created_at : string | null ;
770+ description : string | null ;
771+ display_name : string | null ;
772+ hidden : boolean | null ;
773+ id : string | null ;
774+ name : string | null ;
775+ } ;
776+ Relationships : [ ] ;
777+ } ;
778+ hyperboards_with_admins : {
779+ Row : {
780+ admin_address : string | null ;
781+ admin_chain_id : number | null ;
782+ avatar : string | null ;
783+ background_image : string | null ;
784+ chain_ids : number [ ] | null ;
785+ created_at : string | null ;
786+ display_name : string | null ;
787+ grayscale_images : boolean | null ;
788+ id : string | null ;
789+ name : string | null ;
790+ tile_border_color : string | null ;
791+ } ;
792+ Relationships : [ ] ;
793+ } ;
693794 } ;
694795 Functions : {
695796 default_sponsor_metadata_by_address : {
0 commit comments