@periskope/types 0.6.70 → 0.6.71
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 +1 -1
- package/package.json +1 -1
- package/supabase.types.ts +20 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -1434,7 +1434,7 @@ export type Database = {
|
|
|
1434
1434
|
Enums: {
|
|
1435
1435
|
enum_chat_colors: "#B4876E" | "#A5B337" | "#06CF9C" | "#25D366" | "#02A698" | "#7D9EF1" | "#007BFC" | "#5E47DE" | "#7F66FF" | "#9333EA" | "#FA6533" | "#C4532D" | "#DC2626" | "#FF2E74" | "#DB2777";
|
|
1436
1436
|
enum_chat_tickets_status: "open" | "inprogress" | "closed" | "archived";
|
|
1437
|
-
enum_integration_name: "
|
|
1437
|
+
enum_integration_name: "org.created" | "org.updated" | "org.member.created" | "org.member.updated" | "org.phone.created" | "org.phone.connected" | "org.phone.disconnected" | "org.subscription.trial_will_end" | "chat.created" | "chat.updated" | "message.created" | "message.updated" | "message.deleted" | "message.ack.updated" | "reaction.created" | "reaction.updated" | "ticket.created" | "ticket.updated" | "ticket.deleted";
|
|
1438
1438
|
enum_member_role: "admin" | "member";
|
|
1439
1439
|
};
|
|
1440
1440
|
CompositeTypes: {
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -1452,7 +1452,26 @@ export type Database = {
|
|
|
1452
1452
|
| "#FF2E74"
|
|
1453
1453
|
| "#DB2777"
|
|
1454
1454
|
enum_chat_tickets_status: "open" | "inprogress" | "closed" | "archived"
|
|
1455
|
-
enum_integration_name:
|
|
1455
|
+
enum_integration_name:
|
|
1456
|
+
| "org.created"
|
|
1457
|
+
| "org.updated"
|
|
1458
|
+
| "org.member.created"
|
|
1459
|
+
| "org.member.updated"
|
|
1460
|
+
| "org.phone.created"
|
|
1461
|
+
| "org.phone.connected"
|
|
1462
|
+
| "org.phone.disconnected"
|
|
1463
|
+
| "org.subscription.trial_will_end"
|
|
1464
|
+
| "chat.created"
|
|
1465
|
+
| "chat.updated"
|
|
1466
|
+
| "message.created"
|
|
1467
|
+
| "message.updated"
|
|
1468
|
+
| "message.deleted"
|
|
1469
|
+
| "message.ack.updated"
|
|
1470
|
+
| "reaction.created"
|
|
1471
|
+
| "reaction.updated"
|
|
1472
|
+
| "ticket.created"
|
|
1473
|
+
| "ticket.updated"
|
|
1474
|
+
| "ticket.deleted"
|
|
1456
1475
|
enum_member_role: "admin" | "member"
|
|
1457
1476
|
}
|
|
1458
1477
|
CompositeTypes: {
|