@adventurelabs/scout-core 1.4.6 → 1.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -840,6 +840,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
840
840
|
};
|
|
841
841
|
versions_software: {
|
|
842
842
|
Row: {
|
|
843
|
+
broken: boolean;
|
|
843
844
|
commit_hash: string | null;
|
|
844
845
|
created_at: string;
|
|
845
846
|
description: string;
|
|
@@ -854,6 +855,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
854
855
|
version: string;
|
|
855
856
|
};
|
|
856
857
|
Insert: {
|
|
858
|
+
broken?: boolean;
|
|
857
859
|
commit_hash?: string | null;
|
|
858
860
|
created_at?: string;
|
|
859
861
|
description: string;
|
|
@@ -868,6 +870,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
868
870
|
version: string;
|
|
869
871
|
};
|
|
870
872
|
Update: {
|
|
873
|
+
broken?: boolean;
|
|
871
874
|
commit_hash?: string | null;
|
|
872
875
|
created_at?: string;
|
|
873
876
|
description?: string;
|
package/dist/types/supabase.d.ts
CHANGED
|
@@ -883,6 +883,7 @@ export type Database = {
|
|
|
883
883
|
};
|
|
884
884
|
versions_software: {
|
|
885
885
|
Row: {
|
|
886
|
+
broken: boolean;
|
|
886
887
|
commit_hash: string | null;
|
|
887
888
|
created_at: string;
|
|
888
889
|
description: string;
|
|
@@ -897,6 +898,7 @@ export type Database = {
|
|
|
897
898
|
version: string;
|
|
898
899
|
};
|
|
899
900
|
Insert: {
|
|
901
|
+
broken?: boolean;
|
|
900
902
|
commit_hash?: string | null;
|
|
901
903
|
created_at?: string;
|
|
902
904
|
description: string;
|
|
@@ -911,6 +913,7 @@ export type Database = {
|
|
|
911
913
|
version: string;
|
|
912
914
|
};
|
|
913
915
|
Update: {
|
|
916
|
+
broken?: boolean;
|
|
914
917
|
commit_hash?: string | null;
|
|
915
918
|
created_at?: string;
|
|
916
919
|
description?: string;
|