@adventurelabs/scout-core 1.0.129 → 1.0.130
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.
|
@@ -55,6 +55,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
55
55
|
modality: string | null;
|
|
56
56
|
session_id: number | null;
|
|
57
57
|
timestamp_observation: string | null;
|
|
58
|
+
timestamp_observation_end: string;
|
|
58
59
|
updated_at: string | null;
|
|
59
60
|
};
|
|
60
61
|
Insert: {
|
|
@@ -65,6 +66,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
65
66
|
modality?: string | null;
|
|
66
67
|
session_id?: number | null;
|
|
67
68
|
timestamp_observation?: string | null;
|
|
69
|
+
timestamp_observation_end?: string;
|
|
68
70
|
updated_at?: string | null;
|
|
69
71
|
};
|
|
70
72
|
Update: {
|
|
@@ -75,6 +77,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
75
77
|
modality?: string | null;
|
|
76
78
|
session_id?: number | null;
|
|
77
79
|
timestamp_observation?: string | null;
|
|
80
|
+
timestamp_observation_end?: string;
|
|
78
81
|
updated_at?: string | null;
|
|
79
82
|
};
|
|
80
83
|
Relationships: [{
|
|
@@ -788,6 +791,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
788
791
|
description: string;
|
|
789
792
|
hyperlink: string | null;
|
|
790
793
|
id: number;
|
|
794
|
+
min: boolean;
|
|
791
795
|
pre: boolean;
|
|
792
796
|
stable: boolean;
|
|
793
797
|
system: string;
|
|
@@ -801,6 +805,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
801
805
|
description: string;
|
|
802
806
|
hyperlink?: string | null;
|
|
803
807
|
id?: number;
|
|
808
|
+
min?: boolean;
|
|
804
809
|
pre?: boolean;
|
|
805
810
|
stable?: boolean;
|
|
806
811
|
system: string;
|
|
@@ -814,6 +819,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
814
819
|
description?: string;
|
|
815
820
|
hyperlink?: string | null;
|
|
816
821
|
id?: number;
|
|
822
|
+
min?: boolean;
|
|
817
823
|
pre?: boolean;
|
|
818
824
|
stable?: boolean;
|
|
819
825
|
system?: string;
|
|
@@ -1048,6 +1054,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
1048
1054
|
modality: string | null;
|
|
1049
1055
|
session_id: number | null;
|
|
1050
1056
|
timestamp_observation: string | null;
|
|
1057
|
+
timestamp_observation_end: string;
|
|
1051
1058
|
updated_at: string | null;
|
|
1052
1059
|
}[];
|
|
1053
1060
|
SetofOptions: {
|
|
@@ -1070,6 +1077,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
1070
1077
|
modality: string | null;
|
|
1071
1078
|
session_id: number | null;
|
|
1072
1079
|
timestamp_observation: string | null;
|
|
1080
|
+
timestamp_observation_end: string;
|
|
1073
1081
|
updated_at: string | null;
|
|
1074
1082
|
}[];
|
|
1075
1083
|
SetofOptions: {
|
|
@@ -1093,6 +1101,7 @@ export declare function useSupabase(): SupabaseClient<Database, "public", "publi
|
|
|
1093
1101
|
modality: string | null;
|
|
1094
1102
|
session_id: number | null;
|
|
1095
1103
|
timestamp_observation: string | null;
|
|
1104
|
+
timestamp_observation_end: string;
|
|
1096
1105
|
updated_at: string | null;
|
|
1097
1106
|
}[];
|
|
1098
1107
|
SetofOptions: {
|
package/dist/types/supabase.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export type Database = {
|
|
|
55
55
|
modality: string | null;
|
|
56
56
|
session_id: number | null;
|
|
57
57
|
timestamp_observation: string | null;
|
|
58
|
+
timestamp_observation_end: string;
|
|
58
59
|
updated_at: string | null;
|
|
59
60
|
};
|
|
60
61
|
Insert: {
|
|
@@ -65,6 +66,7 @@ export type Database = {
|
|
|
65
66
|
modality?: string | null;
|
|
66
67
|
session_id?: number | null;
|
|
67
68
|
timestamp_observation?: string | null;
|
|
69
|
+
timestamp_observation_end?: string;
|
|
68
70
|
updated_at?: string | null;
|
|
69
71
|
};
|
|
70
72
|
Update: {
|
|
@@ -75,6 +77,7 @@ export type Database = {
|
|
|
75
77
|
modality?: string | null;
|
|
76
78
|
session_id?: number | null;
|
|
77
79
|
timestamp_observation?: string | null;
|
|
80
|
+
timestamp_observation_end?: string;
|
|
78
81
|
updated_at?: string | null;
|
|
79
82
|
};
|
|
80
83
|
Relationships: [
|
|
@@ -828,6 +831,7 @@ export type Database = {
|
|
|
828
831
|
description: string;
|
|
829
832
|
hyperlink: string | null;
|
|
830
833
|
id: number;
|
|
834
|
+
min: boolean;
|
|
831
835
|
pre: boolean;
|
|
832
836
|
stable: boolean;
|
|
833
837
|
system: string;
|
|
@@ -841,6 +845,7 @@ export type Database = {
|
|
|
841
845
|
description: string;
|
|
842
846
|
hyperlink?: string | null;
|
|
843
847
|
id?: number;
|
|
848
|
+
min?: boolean;
|
|
844
849
|
pre?: boolean;
|
|
845
850
|
stable?: boolean;
|
|
846
851
|
system: string;
|
|
@@ -854,6 +859,7 @@ export type Database = {
|
|
|
854
859
|
description?: string;
|
|
855
860
|
hyperlink?: string | null;
|
|
856
861
|
id?: number;
|
|
862
|
+
min?: boolean;
|
|
857
863
|
pre?: boolean;
|
|
858
864
|
stable?: boolean;
|
|
859
865
|
system?: string;
|
|
@@ -1100,6 +1106,7 @@ export type Database = {
|
|
|
1100
1106
|
modality: string | null;
|
|
1101
1107
|
session_id: number | null;
|
|
1102
1108
|
timestamp_observation: string | null;
|
|
1109
|
+
timestamp_observation_end: string;
|
|
1103
1110
|
updated_at: string | null;
|
|
1104
1111
|
}[];
|
|
1105
1112
|
SetofOptions: {
|
|
@@ -1122,6 +1129,7 @@ export type Database = {
|
|
|
1122
1129
|
modality: string | null;
|
|
1123
1130
|
session_id: number | null;
|
|
1124
1131
|
timestamp_observation: string | null;
|
|
1132
|
+
timestamp_observation_end: string;
|
|
1125
1133
|
updated_at: string | null;
|
|
1126
1134
|
}[];
|
|
1127
1135
|
SetofOptions: {
|
|
@@ -1145,6 +1153,7 @@ export type Database = {
|
|
|
1145
1153
|
modality: string | null;
|
|
1146
1154
|
session_id: number | null;
|
|
1147
1155
|
timestamp_observation: string | null;
|
|
1156
|
+
timestamp_observation_end: string;
|
|
1148
1157
|
updated_at: string | null;
|
|
1149
1158
|
}[];
|
|
1150
1159
|
SetofOptions: {
|