@periskope/types 0.6.194 → 0.6.196
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 +9 -1
- package/dist/rules.types.d.ts.map +1 -1
- package/dist/rules.types.js +31 -2
- package/dist/supabase.types.d.ts +3 -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/package.json +17 -17
- package/src/index.ts +3 -3
- package/src/rules.types.ts +1928 -1889
- package/src/supabase.types.ts +4 -1
- package/src/types.ts +965 -964
- package/tsconfig.tsbuildinfo +1 -0
package/src/supabase.types.ts
CHANGED
|
@@ -1058,6 +1058,7 @@ export type Database = {
|
|
|
1058
1058
|
org_id: string
|
|
1059
1059
|
org_phone: string
|
|
1060
1060
|
pinned: boolean | null
|
|
1061
|
+
pinned_messages: Json | null
|
|
1061
1062
|
timestamp: string | null
|
|
1062
1063
|
unread_count: number | null
|
|
1063
1064
|
updated_at: string
|
|
@@ -1086,6 +1087,7 @@ export type Database = {
|
|
|
1086
1087
|
org_id: string
|
|
1087
1088
|
org_phone: string
|
|
1088
1089
|
pinned?: boolean | null
|
|
1090
|
+
pinned_messages?: Json | null
|
|
1089
1091
|
timestamp?: string | null
|
|
1090
1092
|
unread_count?: number | null
|
|
1091
1093
|
updated_at?: string
|
|
@@ -1114,6 +1116,7 @@ export type Database = {
|
|
|
1114
1116
|
org_id?: string
|
|
1115
1117
|
org_phone?: string
|
|
1116
1118
|
pinned?: boolean | null
|
|
1119
|
+
pinned_messages?: Json | null
|
|
1117
1120
|
timestamp?: string | null
|
|
1118
1121
|
unread_count?: number | null
|
|
1119
1122
|
updated_at?: string
|
|
@@ -3111,4 +3114,4 @@ export type CompositeTypes<
|
|
|
3111
3114
|
? PublicSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions]
|
|
3112
3115
|
: never
|
|
3113
3116
|
|
|
3114
|
-
|
|
3117
|
+
|