@periskope/types 0.6.259 → 0.6.260
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/rules.types.d.ts +3 -3
- package/dist/rules.types.d.ts.map +1 -1
- package/dist/rules.types.js +14 -81
- package/dist/supabase.types.d.ts +4 -1
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +0 -283
- package/dist/types.d.ts.map +1 -1
- package/mod_json_type.ps1 +108 -108
- package/mod_json_type.sh +22 -22
- package/package.json +19 -19
- package/src/index.ts +4 -4
- package/src/object.types.ts +100 -100
- package/src/rules.types.ts +2109 -2169
- package/src/supabase.types.ts +7 -5
- package/src/types.ts +1231 -1231
- package/tsconfig.json +18 -18
- package/update_package.ps1 +21 -21
- package/tsconfig.tsbuildinfo +0 -1
package/src/supabase.types.ts
CHANGED
|
@@ -1673,6 +1673,7 @@ export type Database = {
|
|
|
1673
1673
|
is_browser_open: boolean
|
|
1674
1674
|
is_ready: boolean | null
|
|
1675
1675
|
label_ids: Json | null
|
|
1676
|
+
last_disconnect: Json | null
|
|
1676
1677
|
library: string | null
|
|
1677
1678
|
org_id: string
|
|
1678
1679
|
org_phone: string | null
|
|
@@ -1696,6 +1697,7 @@ export type Database = {
|
|
|
1696
1697
|
is_browser_open?: boolean
|
|
1697
1698
|
is_ready?: boolean | null
|
|
1698
1699
|
label_ids?: Json | null
|
|
1700
|
+
last_disconnect?: Json | null
|
|
1699
1701
|
library?: string | null
|
|
1700
1702
|
org_id: string
|
|
1701
1703
|
org_phone?: string | null
|
|
@@ -1719,6 +1721,7 @@ export type Database = {
|
|
|
1719
1721
|
is_browser_open?: boolean
|
|
1720
1722
|
is_ready?: boolean | null
|
|
1721
1723
|
label_ids?: Json | null
|
|
1724
|
+
last_disconnect?: Json | null
|
|
1722
1725
|
library?: string | null
|
|
1723
1726
|
org_id?: string
|
|
1724
1727
|
org_phone?: string | null
|
|
@@ -2717,6 +2720,9 @@ export type Database = {
|
|
|
2717
2720
|
| "org.updated"
|
|
2718
2721
|
| "org.member.created"
|
|
2719
2722
|
| "org.member.updated"
|
|
2723
|
+
| "org.phone.created"
|
|
2724
|
+
| "org.phone.connected"
|
|
2725
|
+
| "org.phone.disconnected"
|
|
2720
2726
|
| "org.subscription.trial_will_end"
|
|
2721
2727
|
| "chat.created"
|
|
2722
2728
|
| "chat.updated"
|
|
@@ -2736,10 +2742,6 @@ export type Database = {
|
|
|
2736
2742
|
| "chat.label.updated"
|
|
2737
2743
|
| "reaction.added"
|
|
2738
2744
|
| "message.ticket.attached"
|
|
2739
|
-
| "org.phone.created"
|
|
2740
|
-
| "org.phone.updated"
|
|
2741
|
-
| "org.phone.connected"
|
|
2742
|
-
| "org.phone.disconnected"
|
|
2743
2745
|
| "org.phone.qr"
|
|
2744
2746
|
enum_integration_type:
|
|
2745
2747
|
| "zapier"
|
|
@@ -3358,4 +3360,4 @@ export const Constants = {
|
|
|
3358
3360
|
},
|
|
3359
3361
|
} as const
|
|
3360
3362
|
|
|
3361
|
-
|
|
3363
|
+
|