@periskope/types 0.6.184 → 0.6.186
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 +12 -0
- package/package.json +1 -1
- package/supabase.types.ts +12 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -2525,6 +2525,18 @@ export type Database = {
|
|
|
2525
2525
|
};
|
|
2526
2526
|
Returns: undefined;
|
|
2527
2527
|
};
|
|
2528
|
+
update_flag: {
|
|
2529
|
+
Args: {
|
|
2530
|
+
org_id_input: string;
|
|
2531
|
+
chat_id_input: string;
|
|
2532
|
+
flag_metadata_input: Json;
|
|
2533
|
+
flag_status_input: boolean;
|
|
2534
|
+
unique_message_id_input?: string;
|
|
2535
|
+
org_phone_input?: string;
|
|
2536
|
+
replace?: boolean;
|
|
2537
|
+
};
|
|
2538
|
+
Returns: undefined;
|
|
2539
|
+
};
|
|
2528
2540
|
update_labels: {
|
|
2529
2541
|
Args: {
|
|
2530
2542
|
org_id_input: string;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -2536,6 +2536,18 @@ export type Database = {
|
|
|
2536
2536
|
}
|
|
2537
2537
|
Returns: undefined
|
|
2538
2538
|
}
|
|
2539
|
+
update_flag: {
|
|
2540
|
+
Args: {
|
|
2541
|
+
org_id_input: string
|
|
2542
|
+
chat_id_input: string
|
|
2543
|
+
flag_metadata_input: Json
|
|
2544
|
+
flag_status_input: boolean
|
|
2545
|
+
unique_message_id_input?: string
|
|
2546
|
+
org_phone_input?: string
|
|
2547
|
+
replace?: boolean
|
|
2548
|
+
}
|
|
2549
|
+
Returns: undefined
|
|
2550
|
+
}
|
|
2539
2551
|
update_labels: {
|
|
2540
2552
|
Args: {
|
|
2541
2553
|
org_id_input: string
|