@periskope/types 0.6.110 → 0.6.111
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 +9 -3
- package/package.json +1 -1
- package/supabase.types.ts +72 -66
package/dist/supabase.types.d.ts
CHANGED
|
@@ -705,6 +705,7 @@ export type Database = {
|
|
|
705
705
|
status: Database["public"]["Enums"]["enum_chat_tickets_status"] | null;
|
|
706
706
|
subject: string;
|
|
707
707
|
ticket_id: string;
|
|
708
|
+
zohodesk_metadata: Json | null;
|
|
708
709
|
};
|
|
709
710
|
Insert: {
|
|
710
711
|
assigned_by?: string | null;
|
|
@@ -727,6 +728,7 @@ export type Database = {
|
|
|
727
728
|
status?: Database["public"]["Enums"]["enum_chat_tickets_status"] | null;
|
|
728
729
|
subject: string;
|
|
729
730
|
ticket_id?: string;
|
|
731
|
+
zohodesk_metadata?: Json | null;
|
|
730
732
|
};
|
|
731
733
|
Update: {
|
|
732
734
|
assigned_by?: string | null;
|
|
@@ -749,6 +751,7 @@ export type Database = {
|
|
|
749
751
|
status?: Database["public"]["Enums"]["enum_chat_tickets_status"] | null;
|
|
750
752
|
subject?: string;
|
|
751
753
|
ticket_id?: string;
|
|
754
|
+
zohodesk_metadata?: Json | null;
|
|
752
755
|
};
|
|
753
756
|
Relationships: [
|
|
754
757
|
{
|
|
@@ -1577,8 +1580,9 @@ export type Database = {
|
|
|
1577
1580
|
created_at: string | null;
|
|
1578
1581
|
is_enterprise: boolean | null;
|
|
1579
1582
|
is_free_trial: boolean | null;
|
|
1580
|
-
is_hubspot_connected: boolean | null;
|
|
1581
1583
|
is_freshdesk_connected: boolean | null;
|
|
1584
|
+
is_hubspot_connected: boolean | null;
|
|
1585
|
+
is_zohodesk_connected: boolean | null;
|
|
1582
1586
|
org_id: string | null;
|
|
1583
1587
|
org_image: string | null;
|
|
1584
1588
|
org_metadata: Json | null;
|
|
@@ -1599,8 +1603,9 @@ export type Database = {
|
|
|
1599
1603
|
created_at?: string | null;
|
|
1600
1604
|
is_enterprise?: never;
|
|
1601
1605
|
is_free_trial?: never;
|
|
1602
|
-
is_hubspot_connected?: never;
|
|
1603
1606
|
is_freshdesk_connected?: never;
|
|
1607
|
+
is_hubspot_connected?: never;
|
|
1608
|
+
is_zohodesk_connected?: never;
|
|
1604
1609
|
org_id?: string | null;
|
|
1605
1610
|
org_image?: string | null;
|
|
1606
1611
|
org_metadata?: Json | null;
|
|
@@ -1621,8 +1626,9 @@ export type Database = {
|
|
|
1621
1626
|
created_at?: string | null;
|
|
1622
1627
|
is_enterprise?: never;
|
|
1623
1628
|
is_free_trial?: never;
|
|
1624
|
-
is_hubspot_connected?: never;
|
|
1625
1629
|
is_freshdesk_connected?: never;
|
|
1630
|
+
is_hubspot_connected?: never;
|
|
1631
|
+
is_zohodesk_connected?: never;
|
|
1626
1632
|
org_id?: string | null;
|
|
1627
1633
|
org_image?: string | null;
|
|
1628
1634
|
org_metadata?: Json | null;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -710,6 +710,7 @@ export type Database = {
|
|
|
710
710
|
status: Database["public"]["Enums"]["enum_chat_tickets_status"] | null
|
|
711
711
|
subject: string
|
|
712
712
|
ticket_id: string
|
|
713
|
+
zohodesk_metadata: Json | null
|
|
713
714
|
}
|
|
714
715
|
Insert: {
|
|
715
716
|
assigned_by?: string | null
|
|
@@ -734,6 +735,7 @@ export type Database = {
|
|
|
734
735
|
| null
|
|
735
736
|
subject: string
|
|
736
737
|
ticket_id?: string
|
|
738
|
+
zohodesk_metadata?: Json | null
|
|
737
739
|
}
|
|
738
740
|
Update: {
|
|
739
741
|
assigned_by?: string | null
|
|
@@ -758,6 +760,7 @@ export type Database = {
|
|
|
758
760
|
| null
|
|
759
761
|
subject?: string
|
|
760
762
|
ticket_id?: string
|
|
763
|
+
zohodesk_metadata?: Json | null
|
|
761
764
|
}
|
|
762
765
|
Relationships: [
|
|
763
766
|
{
|
|
@@ -1584,74 +1587,77 @@ export type Database = {
|
|
|
1584
1587
|
}
|
|
1585
1588
|
view_org: {
|
|
1586
1589
|
Row: {
|
|
1587
|
-
access_scopes: Json | null
|
|
1588
|
-
created_at: string | null
|
|
1589
|
-
is_enterprise: boolean | null
|
|
1590
|
-
is_free_trial: boolean | null
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1590
|
+
access_scopes: Json | null
|
|
1591
|
+
created_at: string | null
|
|
1592
|
+
is_enterprise: boolean | null
|
|
1593
|
+
is_free_trial: boolean | null
|
|
1594
|
+
is_freshdesk_connected: boolean | null
|
|
1595
|
+
is_hubspot_connected: boolean | null
|
|
1596
|
+
is_zohodesk_connected: boolean | null
|
|
1597
|
+
org_id: string | null
|
|
1598
|
+
org_image: string | null
|
|
1599
|
+
org_metadata: Json | null
|
|
1600
|
+
org_name: string | null
|
|
1601
|
+
org_plan: Json | null
|
|
1602
|
+
pending_days: number | null
|
|
1603
|
+
phone_limit: string | null
|
|
1604
|
+
plan_id: string | null
|
|
1605
|
+
stripe_customer_details: Json | null
|
|
1606
|
+
stripe_customer_id: string | null
|
|
1607
|
+
stripe_subscription_details: Json | null
|
|
1608
|
+
subscription_status: string | null
|
|
1609
|
+
support_link: string | null
|
|
1610
|
+
user_limit: string | null
|
|
1611
|
+
}
|
|
1608
1612
|
Insert: {
|
|
1609
|
-
access_scopes?: never
|
|
1610
|
-
created_at?: string | null
|
|
1611
|
-
is_enterprise?: never
|
|
1612
|
-
is_free_trial?: never
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1613
|
+
access_scopes?: never
|
|
1614
|
+
created_at?: string | null
|
|
1615
|
+
is_enterprise?: never
|
|
1616
|
+
is_free_trial?: never
|
|
1617
|
+
is_freshdesk_connected?: never
|
|
1618
|
+
is_hubspot_connected?: never
|
|
1619
|
+
is_zohodesk_connected?: never
|
|
1620
|
+
org_id?: string | null
|
|
1621
|
+
org_image?: string | null
|
|
1622
|
+
org_metadata?: Json | null
|
|
1623
|
+
org_name?: string | null
|
|
1624
|
+
org_plan?: Json | null
|
|
1625
|
+
pending_days?: never
|
|
1626
|
+
phone_limit?: never
|
|
1627
|
+
plan_id?: never
|
|
1628
|
+
stripe_customer_details?: Json | null
|
|
1629
|
+
stripe_customer_id?: string | null
|
|
1630
|
+
stripe_subscription_details?: Json | null
|
|
1631
|
+
subscription_status?: never
|
|
1632
|
+
support_link?: string | null
|
|
1633
|
+
user_limit?: never
|
|
1634
|
+
}
|
|
1630
1635
|
Update: {
|
|
1631
|
-
access_scopes?: never
|
|
1632
|
-
created_at?: string | null
|
|
1633
|
-
is_enterprise?: never
|
|
1634
|
-
is_free_trial?: never
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1636
|
+
access_scopes?: never
|
|
1637
|
+
created_at?: string | null
|
|
1638
|
+
is_enterprise?: never
|
|
1639
|
+
is_free_trial?: never
|
|
1640
|
+
is_freshdesk_connected?: never
|
|
1641
|
+
is_hubspot_connected?: never
|
|
1642
|
+
is_zohodesk_connected?: never
|
|
1643
|
+
org_id?: string | null
|
|
1644
|
+
org_image?: string | null
|
|
1645
|
+
org_metadata?: Json | null
|
|
1646
|
+
org_name?: string | null
|
|
1647
|
+
org_plan?: Json | null
|
|
1648
|
+
pending_days?: never
|
|
1649
|
+
phone_limit?: never
|
|
1650
|
+
plan_id?: never
|
|
1651
|
+
stripe_customer_details?: Json | null
|
|
1652
|
+
stripe_customer_id?: string | null
|
|
1653
|
+
stripe_subscription_details?: Json | null
|
|
1654
|
+
subscription_status?: never
|
|
1655
|
+
support_link?: string | null
|
|
1656
|
+
user_limit?: never
|
|
1657
|
+
}
|
|
1658
|
+
Relationships: []
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1655
1661
|
Functions: {
|
|
1656
1662
|
create_partition: {
|
|
1657
1663
|
Args: {
|