@periskope/types 0.6.405 → 0.6.407
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/src/supabase.types.ts
CHANGED
|
@@ -1955,7 +1955,7 @@ export type Database = {
|
|
|
1955
1955
|
clicked_by: Json | null
|
|
1956
1956
|
created_at: string
|
|
1957
1957
|
notification_id: string
|
|
1958
|
-
notification_type:
|
|
1958
|
+
notification_type: string
|
|
1959
1959
|
org_id: string
|
|
1960
1960
|
seen_at: string | null
|
|
1961
1961
|
sender_details: Json
|
|
@@ -1966,7 +1966,7 @@ export type Database = {
|
|
|
1966
1966
|
body: Json
|
|
1967
1967
|
created_at?: string
|
|
1968
1968
|
notification_id?: string
|
|
1969
|
-
notification_type:
|
|
1969
|
+
notification_type: string
|
|
1970
1970
|
org_id: string
|
|
1971
1971
|
seen_at?: string | null
|
|
1972
1972
|
sender_details: Json
|
|
@@ -1977,7 +1977,7 @@ export type Database = {
|
|
|
1977
1977
|
body?: Json
|
|
1978
1978
|
created_at?: string
|
|
1979
1979
|
notification_id?: string
|
|
1980
|
-
notification_type?:
|
|
1980
|
+
notification_type?: string
|
|
1981
1981
|
org_id?: string
|
|
1982
1982
|
seen_at?: string | null
|
|
1983
1983
|
sender_details?: Json
|
|
@@ -3412,7 +3412,6 @@ export type Database = {
|
|
|
3412
3412
|
| "gsheets"
|
|
3413
3413
|
| "zohocrm"
|
|
3414
3414
|
enum_member_role: "admin" | "member"
|
|
3415
|
-
enum_notification_type: "message" | "mention" | "task" | "ticket" | "org"
|
|
3416
3415
|
}
|
|
3417
3416
|
CompositeTypes: {
|
|
3418
3417
|
[_ in never]: never
|
|
@@ -3903,10 +3902,9 @@ export const Constants = {
|
|
|
3903
3902
|
"gsheets",
|
|
3904
3903
|
],
|
|
3905
3904
|
enum_member_role: ["admin", "member"],
|
|
3906
|
-
enum_notification_type: ["message", "mention", "task", "ticket", "org"],
|
|
3907
3905
|
},
|
|
3908
3906
|
},
|
|
3909
3907
|
storage: {
|
|
3910
3908
|
Enums: {},
|
|
3911
|
-
|
|
3909
|
+
},
|
|
3912
3910
|
} as const;
|