@periskope/types 0.6.131 → 0.6.133
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 +6 -6
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/supabase.types.ts +5 -6
- package/types.ts +1 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -1513,7 +1513,7 @@ export type Database = {
|
|
|
1513
1513
|
performed_by: string | null;
|
|
1514
1514
|
scheduled_at: string;
|
|
1515
1515
|
sent_message_id: string;
|
|
1516
|
-
status:
|
|
1516
|
+
status: boolean | null;
|
|
1517
1517
|
updated_at: string | null;
|
|
1518
1518
|
};
|
|
1519
1519
|
Insert: {
|
|
@@ -1526,7 +1526,7 @@ export type Database = {
|
|
|
1526
1526
|
performed_by?: string | null;
|
|
1527
1527
|
scheduled_at: string;
|
|
1528
1528
|
sent_message_id: string;
|
|
1529
|
-
status?:
|
|
1529
|
+
status?: boolean | null;
|
|
1530
1530
|
updated_at?: string | null;
|
|
1531
1531
|
};
|
|
1532
1532
|
Update: {
|
|
@@ -1539,7 +1539,7 @@ export type Database = {
|
|
|
1539
1539
|
performed_by?: string | null;
|
|
1540
1540
|
scheduled_at?: string;
|
|
1541
1541
|
sent_message_id?: string;
|
|
1542
|
-
status?:
|
|
1542
|
+
status?: boolean | null;
|
|
1543
1543
|
updated_at?: string | null;
|
|
1544
1544
|
};
|
|
1545
1545
|
Relationships: [
|
|
@@ -1839,8 +1839,8 @@ export type Database = {
|
|
|
1839
1839
|
search_input?: string;
|
|
1840
1840
|
label_ids_input?: string[];
|
|
1841
1841
|
is_internal_input?: boolean;
|
|
1842
|
-
|
|
1843
|
-
|
|
1842
|
+
offset_input?: number;
|
|
1843
|
+
limit_input?: number;
|
|
1844
1844
|
};
|
|
1845
1845
|
Returns: Json;
|
|
1846
1846
|
};
|
|
@@ -1957,7 +1957,7 @@ export type Database = {
|
|
|
1957
1957
|
enum_chat_colors: "#B4876E" | "#A5B337" | "#06CF9C" | "#25D366" | "#02A698" | "#7D9EF1" | "#007BFC" | "#5E47DE" | "#7F66FF" | "#9333EA" | "#FA6533" | "#C4532D" | "#DC2626" | "#FF2E74" | "#DB2777";
|
|
1958
1958
|
enum_chat_tickets_status: "open" | "inprogress" | "closed" | "archived";
|
|
1959
1959
|
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" | "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";
|
|
1960
|
-
enum_integration_type: "zapier" | "pabbly" | "api" | "webhook" | "hubspot" | "freshdesk" | "slack" | "jira" | "salesforce" | "zohodesk"
|
|
1960
|
+
enum_integration_type: "zapier" | "pabbly" | "api" | "webhook" | "hubspot" | "freshdesk" | "slack" | "jira" | "salesforce" | "zohodesk";
|
|
1961
1961
|
enum_member_role: "admin" | "member";
|
|
1962
1962
|
};
|
|
1963
1963
|
CompositeTypes: {
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -1522,7 +1522,7 @@ export type Database = {
|
|
|
1522
1522
|
performed_by: string | null
|
|
1523
1523
|
scheduled_at: string
|
|
1524
1524
|
sent_message_id: string
|
|
1525
|
-
status:
|
|
1525
|
+
status: boolean | null
|
|
1526
1526
|
updated_at: string | null
|
|
1527
1527
|
}
|
|
1528
1528
|
Insert: {
|
|
@@ -1535,7 +1535,7 @@ export type Database = {
|
|
|
1535
1535
|
performed_by?: string | null
|
|
1536
1536
|
scheduled_at: string
|
|
1537
1537
|
sent_message_id: string
|
|
1538
|
-
status?:
|
|
1538
|
+
status?: boolean | null
|
|
1539
1539
|
updated_at?: string | null
|
|
1540
1540
|
}
|
|
1541
1541
|
Update: {
|
|
@@ -1548,7 +1548,7 @@ export type Database = {
|
|
|
1548
1548
|
performed_by?: string | null
|
|
1549
1549
|
scheduled_at?: string
|
|
1550
1550
|
sent_message_id?: string
|
|
1551
|
-
status?:
|
|
1551
|
+
status?: boolean | null
|
|
1552
1552
|
updated_at?: string | null
|
|
1553
1553
|
}
|
|
1554
1554
|
Relationships: [
|
|
@@ -1850,8 +1850,8 @@ export type Database = {
|
|
|
1850
1850
|
search_input?: string
|
|
1851
1851
|
label_ids_input?: string[]
|
|
1852
1852
|
is_internal_input?: boolean
|
|
1853
|
-
|
|
1854
|
-
|
|
1853
|
+
offset_input?: number
|
|
1854
|
+
limit_input?: number
|
|
1855
1855
|
}
|
|
1856
1856
|
Returns: Json
|
|
1857
1857
|
}
|
|
@@ -2015,7 +2015,6 @@ export type Database = {
|
|
|
2015
2015
|
| "jira"
|
|
2016
2016
|
| "salesforce"
|
|
2017
2017
|
| "zohodesk"
|
|
2018
|
-
| "gsheets"
|
|
2019
2018
|
enum_member_role: "admin" | "member"
|
|
2020
2019
|
}
|
|
2021
2020
|
CompositeTypes: {
|
package/types.ts
CHANGED
|
@@ -437,7 +437,7 @@ export type TicketInfoType = {
|
|
|
437
437
|
assigned_by: string;
|
|
438
438
|
ticket_labels: string;
|
|
439
439
|
quoted_message_id: string;
|
|
440
|
-
|
|
440
|
+
ticket_custom_properties: { [key: string]: string } | null;
|
|
441
441
|
};
|
|
442
442
|
};
|
|
443
443
|
|