@periskope/types 0.6.101 → 0.6.103
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 +4 -4
- package/dist/types.d.ts +1 -0
- package/dist/types.js +1 -0
- package/package.json +1 -1
- package/supabase.types.ts +3 -4
- package/types.ts +1 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -1613,7 +1613,7 @@ export type Database = {
|
|
|
1613
1613
|
first_connected_at: string | null;
|
|
1614
1614
|
is_browser_open: boolean;
|
|
1615
1615
|
is_ready: boolean | null;
|
|
1616
|
-
legacy_version: boolean
|
|
1616
|
+
legacy_version: boolean;
|
|
1617
1617
|
org_id: string;
|
|
1618
1618
|
org_phone: string | null;
|
|
1619
1619
|
phone_id: string;
|
|
@@ -1632,7 +1632,7 @@ export type Database = {
|
|
|
1632
1632
|
first_connected_at?: string | null;
|
|
1633
1633
|
is_browser_open?: boolean;
|
|
1634
1634
|
is_ready?: boolean | null;
|
|
1635
|
-
legacy_version?: boolean
|
|
1635
|
+
legacy_version?: boolean;
|
|
1636
1636
|
org_id: string;
|
|
1637
1637
|
org_phone?: string | null;
|
|
1638
1638
|
phone_id?: string;
|
|
@@ -1651,7 +1651,7 @@ export type Database = {
|
|
|
1651
1651
|
first_connected_at?: string | null;
|
|
1652
1652
|
is_browser_open?: boolean;
|
|
1653
1653
|
is_ready?: boolean | null;
|
|
1654
|
-
legacy_version?: boolean
|
|
1654
|
+
legacy_version?: boolean;
|
|
1655
1655
|
org_id?: string;
|
|
1656
1656
|
org_phone?: string | null;
|
|
1657
1657
|
phone_id?: string;
|
|
@@ -2099,7 +2099,7 @@ export type Database = {
|
|
|
2099
2099
|
enum_broadcast_status: 'inprogress' | 'completed' | 'stopped';
|
|
2100
2100
|
enum_chat_colors: '#B4876E' | '#A5B337' | '#06CF9C' | '#25D366' | '#02A698' | '#7D9EF1' | '#007BFC' | '#5E47DE' | '#7F66FF' | '#9333EA' | '#FA6533' | '#C4532D' | '#DC2626' | '#FF2E74' | '#DB2777';
|
|
2101
2101
|
enum_chat_tickets_status: 'open' | 'inprogress' | 'closed' | 'archived';
|
|
2102
|
-
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' | '
|
|
2102
|
+
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';
|
|
2103
2103
|
enum_integration_type: 'zapier' | 'pabbly' | 'api' | 'webhook' | 'hubspot' | 'freshdesk' | 'slack' | 'jira' | 'salesforce';
|
|
2104
2104
|
enum_member_role: 'admin' | 'member';
|
|
2105
2105
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -301,6 +301,7 @@ export type TicketInfoType = {
|
|
|
301
301
|
};
|
|
302
302
|
export declare enum IntegrationLogType {
|
|
303
303
|
NEW_CHAT = "chat.created",
|
|
304
|
+
NEW_CHAT_NOTIFICATION = "chat.notification.created",
|
|
304
305
|
NEW_MESSAGE = "message.created",
|
|
305
306
|
MESSAGE_UPDATED = "message.updated",
|
|
306
307
|
MESSAGE_DELETED = "message.deleted",
|
package/dist/types.js
CHANGED
|
@@ -57,6 +57,7 @@ exports.SUPPORTED_TYPES = [
|
|
|
57
57
|
var IntegrationLogType;
|
|
58
58
|
(function (IntegrationLogType) {
|
|
59
59
|
IntegrationLogType["NEW_CHAT"] = "chat.created";
|
|
60
|
+
IntegrationLogType["NEW_CHAT_NOTIFICATION"] = "chat.notification.created";
|
|
60
61
|
IntegrationLogType["NEW_MESSAGE"] = "message.created";
|
|
61
62
|
IntegrationLogType["MESSAGE_UPDATED"] = "message.updated";
|
|
62
63
|
IntegrationLogType["MESSAGE_DELETED"] = "message.deleted";
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -1628,7 +1628,7 @@ export type Database = {
|
|
|
1628
1628
|
first_connected_at: string | null;
|
|
1629
1629
|
is_browser_open: boolean;
|
|
1630
1630
|
is_ready: boolean | null;
|
|
1631
|
-
legacy_version: boolean
|
|
1631
|
+
legacy_version: boolean;
|
|
1632
1632
|
org_id: string;
|
|
1633
1633
|
org_phone: string | null;
|
|
1634
1634
|
phone_id: string;
|
|
@@ -1647,7 +1647,7 @@ export type Database = {
|
|
|
1647
1647
|
first_connected_at?: string | null;
|
|
1648
1648
|
is_browser_open?: boolean;
|
|
1649
1649
|
is_ready?: boolean | null;
|
|
1650
|
-
legacy_version?: boolean
|
|
1650
|
+
legacy_version?: boolean;
|
|
1651
1651
|
org_id: string;
|
|
1652
1652
|
org_phone?: string | null;
|
|
1653
1653
|
phone_id?: string;
|
|
@@ -1666,7 +1666,7 @@ export type Database = {
|
|
|
1666
1666
|
first_connected_at?: string | null;
|
|
1667
1667
|
is_browser_open?: boolean;
|
|
1668
1668
|
is_ready?: boolean | null;
|
|
1669
|
-
legacy_version?: boolean
|
|
1669
|
+
legacy_version?: boolean;
|
|
1670
1670
|
org_id?: string;
|
|
1671
1671
|
org_phone?: string | null;
|
|
1672
1672
|
phone_id?: string;
|
|
@@ -2142,7 +2142,6 @@ export type Database = {
|
|
|
2142
2142
|
| 'org.subscription.trial_will_end'
|
|
2143
2143
|
| 'chat.created'
|
|
2144
2144
|
| 'chat.updated'
|
|
2145
|
-
| 'chat.notification.created'
|
|
2146
2145
|
| 'message.created'
|
|
2147
2146
|
| 'message.updated'
|
|
2148
2147
|
| 'message.deleted'
|
package/types.ts
CHANGED
|
@@ -423,6 +423,7 @@ export type TicketInfoType = {
|
|
|
423
423
|
|
|
424
424
|
export enum IntegrationLogType {
|
|
425
425
|
NEW_CHAT = 'chat.created',
|
|
426
|
+
NEW_CHAT_NOTIFICATION = 'chat.notification.created',
|
|
426
427
|
NEW_MESSAGE = 'message.created',
|
|
427
428
|
MESSAGE_UPDATED = 'message.updated',
|
|
428
429
|
MESSAGE_DELETED = 'message.deleted',
|