@periskope/types 0.6.404 → 0.6.405

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.
@@ -0,0 +1 @@
1
+ 2025-07-29T13:18:35.926605Z WARN daemon_server: turborepo_lib::commands::daemon: daemon already running
@@ -1939,6 +1939,59 @@ export type Database = {
1939
1939
  }
1940
1940
  ];
1941
1941
  };
1942
+ tbl_org_notifications: {
1943
+ Row: {
1944
+ action_url: string | null;
1945
+ body: Json;
1946
+ clicked_by: Json | null;
1947
+ created_at: string;
1948
+ notification_id: string;
1949
+ notification_type: Database["public"]["Enums"]["enum_notification_type"];
1950
+ org_id: string;
1951
+ seen_at: string | null;
1952
+ sender_details: Json;
1953
+ to: string | null;
1954
+ updated_at: string | null;
1955
+ };
1956
+ Insert: {
1957
+ body: Json;
1958
+ created_at?: string;
1959
+ notification_id?: string;
1960
+ notification_type: Database["public"]["Enums"]["enum_notification_type"];
1961
+ org_id: string;
1962
+ seen_at?: string | null;
1963
+ sender_details: Json;
1964
+ to?: string | null;
1965
+ updated_at?: string | null;
1966
+ };
1967
+ Update: {
1968
+ body?: Json;
1969
+ created_at?: string;
1970
+ notification_id?: string;
1971
+ notification_type?: Database["public"]["Enums"]["enum_notification_type"];
1972
+ org_id?: string;
1973
+ seen_at?: string | null;
1974
+ sender_details?: Json;
1975
+ to?: string | null;
1976
+ updated_at?: string | null;
1977
+ };
1978
+ Relationships: [
1979
+ {
1980
+ foreignKeyName: "tbl_org_notifications_org_id_fkey";
1981
+ columns: ["org_id"];
1982
+ isOneToOne: false;
1983
+ referencedRelation: "tbl_org";
1984
+ referencedColumns: ["org_id"];
1985
+ },
1986
+ {
1987
+ foreignKeyName: "tbl_org_notifications_org_id_fkey";
1988
+ columns: ["org_id"];
1989
+ isOneToOne: false;
1990
+ referencedRelation: "view_org";
1991
+ referencedColumns: ["org_id"];
1992
+ }
1993
+ ];
1994
+ };
1942
1995
  tbl_org_phones: {
1943
1996
  Row: {
1944
1997
  created_at: string;
@@ -3338,6 +3391,7 @@ export type Database = {
3338
3391
  enum_integration_name: "org.created" | "org.updated" | "org.member.created" | "org.member.updated" | "org.subscription.trial_will_end" | "chat.created" | "chat.updated" | "chat.notification.created" | "message.created" | "message.updated" | "message.deleted" | "message.ack.updated" | "reaction.created" | "reaction.updated" | "ticket.created" | "ticket.updated" | "ticket.deleted" | "org.integrations.updated" | "message.flagged" | "message.unflagged" | "chat.label.updated" | "reaction.added" | "message.ticket.attached" | "org.phone.created" | "org.phone.connected" | "org.phone.disconnected" | "org.phone.qr" | "org.phone.updated" | "note.created" | "chat.custom_properties.updated";
3339
3392
  enum_integration_type: "zapier" | "pabbly" | "api" | "webhook" | "hubspot" | "freshdesk" | "slack" | "jira" | "salesforce" | "zohodesk" | "gsheets" | "zohocrm";
3340
3393
  enum_member_role: "admin" | "member";
3394
+ enum_notification_type: "message" | "mention" | "task" | "ticket" | "org";
3341
3395
  };
3342
3396
  CompositeTypes: {
3343
3397
  [_ in never]: never;
@@ -3719,8 +3773,9 @@ export declare const Constants: {
3719
3773
  readonly enum_chat_tickets_status: readonly ["open", "inprogress", "closed", "archived"];
3720
3774
  readonly enum_credit_transaction_type: readonly ["credit", "debit"];
3721
3775
  readonly enum_integration_name: readonly ["org.created", "org.updated", "org.member.created", "org.member.updated", "org.subscription.trial_will_end", "chat.created", "chat.updated", "chat.notification.created", "message.created", "message.updated", "message.deleted", "message.ack.updated", "reaction.created", "reaction.updated", "ticket.created", "ticket.updated", "ticket.deleted", "org.integrations.updated", "message.flagged", "message.unflagged", "chat.label.updated", "reaction.added", "message.ticket.attached", "org.phone.created", "org.phone.connected", "org.phone.disconnected", "org.phone.qr", "org.phone.updated", "note.created", "chat.custom_properties.updated"];
3722
- readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "gsheets", "zohocrm"];
3776
+ readonly enum_integration_type: readonly ["zapier", "pabbly", "api", "webhook", "hubspot", "freshdesk", "slack", "jira", "salesforce", "zohodesk", "zohocrm", "gsheets"];
3723
3777
  readonly enum_member_role: readonly ["admin", "member"];
3778
+ readonly enum_notification_type: readonly ["message", "mention", "task", "ticket", "org"];
3724
3779
  };
3725
3780
  };
3726
3781
  readonly storage: {