@periskope/types 0.6.104 → 0.6.105
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.
- package/dist/supabase.types.d.ts +7 -0
- package/package.json +1 -1
- package/supabase.types.ts +2276 -2269
package/dist/supabase.types.d.ts
CHANGED
|
@@ -346,6 +346,7 @@ export type Database = {
|
|
|
346
346
|
duration: string | null;
|
|
347
347
|
flag_metadata: Json | null;
|
|
348
348
|
flag_response_time: number | null;
|
|
349
|
+
flag_status: boolean | null;
|
|
349
350
|
forwarding_score: number | null;
|
|
350
351
|
from: string | null;
|
|
351
352
|
from_me: boolean | null;
|
|
@@ -397,6 +398,7 @@ export type Database = {
|
|
|
397
398
|
duration?: string | null;
|
|
398
399
|
flag_metadata?: Json | null;
|
|
399
400
|
flag_response_time?: number | null;
|
|
401
|
+
flag_status?: boolean | null;
|
|
400
402
|
forwarding_score?: number | null;
|
|
401
403
|
from?: string | null;
|
|
402
404
|
from_me?: boolean | null;
|
|
@@ -448,6 +450,7 @@ export type Database = {
|
|
|
448
450
|
duration?: string | null;
|
|
449
451
|
flag_metadata?: Json | null;
|
|
450
452
|
flag_response_time?: number | null;
|
|
453
|
+
flag_status?: boolean | null;
|
|
451
454
|
forwarding_score?: number | null;
|
|
452
455
|
from?: string | null;
|
|
453
456
|
from_me?: boolean | null;
|
|
@@ -2095,6 +2098,10 @@ export type Database = {
|
|
|
2095
2098
|
updated_at: string;
|
|
2096
2099
|
}[];
|
|
2097
2100
|
};
|
|
2101
|
+
operation: {
|
|
2102
|
+
Args: Record<PropertyKey, never>;
|
|
2103
|
+
Returns: string;
|
|
2104
|
+
};
|
|
2098
2105
|
search: {
|
|
2099
2106
|
Args: {
|
|
2100
2107
|
prefix: string;
|