@periskope/types 0.6.199 → 0.6.200
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/rules.types.d.ts.map +1 -1
- package/dist/supabase.types.d.ts +10 -0
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/mod_json_type.ps1 +108 -108
- package/mod_json_type.sh +22 -22
- package/package.json +17 -17
- package/src/index.ts +3 -3
- package/src/rules.types.ts +1936 -1936
- package/src/supabase.types.ts +10 -0
- package/src/types.ts +969 -965
- package/tsconfig.json +18 -18
- package/tsconfig.tsbuildinfo +1 -0
- package/update_package.ps1 +21 -21
package/src/supabase.types.ts
CHANGED
|
@@ -2580,6 +2580,16 @@ export type Database = {
|
|
|
2580
2580
|
}
|
|
2581
2581
|
Returns: undefined
|
|
2582
2582
|
}
|
|
2583
|
+
update_rule_log_entry: {
|
|
2584
|
+
Args: {
|
|
2585
|
+
log_id_input: string
|
|
2586
|
+
action_id?: string
|
|
2587
|
+
action_update?: Json
|
|
2588
|
+
conditions_update?: Json
|
|
2589
|
+
metadata_update?: Json
|
|
2590
|
+
}
|
|
2591
|
+
Returns: Json
|
|
2592
|
+
}
|
|
2583
2593
|
}
|
|
2584
2594
|
Enums: {
|
|
2585
2595
|
enum_broadcast_status: "inprogress" | "completed" | "stopped" | "expired"
|