@periskope/types 0.6.79 → 0.6.80
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 +10 -0
- package/package.json +2 -2
- package/supabase.types.ts +11 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -1182,6 +1182,7 @@ export type Database = {
|
|
|
1182
1182
|
Row: {
|
|
1183
1183
|
created_at: string;
|
|
1184
1184
|
first_connected_at: string | null;
|
|
1185
|
+
is_browser_open: boolean;
|
|
1185
1186
|
is_ready: boolean | null;
|
|
1186
1187
|
legacy_version: boolean | null;
|
|
1187
1188
|
org_id: string;
|
|
@@ -1199,6 +1200,7 @@ export type Database = {
|
|
|
1199
1200
|
Insert: {
|
|
1200
1201
|
created_at?: string;
|
|
1201
1202
|
first_connected_at?: string | null;
|
|
1203
|
+
is_browser_open?: boolean;
|
|
1202
1204
|
is_ready?: boolean | null;
|
|
1203
1205
|
legacy_version?: boolean | null;
|
|
1204
1206
|
org_id: string;
|
|
@@ -1216,6 +1218,7 @@ export type Database = {
|
|
|
1216
1218
|
Update: {
|
|
1217
1219
|
created_at?: string;
|
|
1218
1220
|
first_connected_at?: string | null;
|
|
1221
|
+
is_browser_open?: boolean;
|
|
1219
1222
|
is_ready?: boolean | null;
|
|
1220
1223
|
legacy_version?: boolean | null;
|
|
1221
1224
|
org_id?: string;
|
|
@@ -1479,6 +1482,13 @@ export type Database = {
|
|
|
1479
1482
|
};
|
|
1480
1483
|
Returns: unknown;
|
|
1481
1484
|
};
|
|
1485
|
+
get_chat_members: {
|
|
1486
|
+
Args: {
|
|
1487
|
+
org_id_input?: string;
|
|
1488
|
+
chat_id_input?: string[];
|
|
1489
|
+
};
|
|
1490
|
+
Returns: Json;
|
|
1491
|
+
};
|
|
1482
1492
|
get_chats: {
|
|
1483
1493
|
Args: {
|
|
1484
1494
|
org_id_input?: string;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@periskope/types",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.80",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@periskope/whatsapp-web.js": "
|
|
8
|
+
"@periskope/whatsapp-web.js": "1.23.1-alpha.exodus.7",
|
|
9
9
|
"@types/pg": "8.11.2",
|
|
10
10
|
"pg": "^8.11.3",
|
|
11
11
|
"stripe": "^14.19.0",
|
package/supabase.types.ts
CHANGED
|
@@ -1185,6 +1185,7 @@ export type Database = {
|
|
|
1185
1185
|
Row: {
|
|
1186
1186
|
created_at: string
|
|
1187
1187
|
first_connected_at: string | null
|
|
1188
|
+
is_browser_open: boolean
|
|
1188
1189
|
is_ready: boolean | null
|
|
1189
1190
|
legacy_version: boolean | null
|
|
1190
1191
|
org_id: string
|
|
@@ -1202,6 +1203,7 @@ export type Database = {
|
|
|
1202
1203
|
Insert: {
|
|
1203
1204
|
created_at?: string
|
|
1204
1205
|
first_connected_at?: string | null
|
|
1206
|
+
is_browser_open?: boolean
|
|
1205
1207
|
is_ready?: boolean | null
|
|
1206
1208
|
legacy_version?: boolean | null
|
|
1207
1209
|
org_id: string
|
|
@@ -1219,6 +1221,7 @@ export type Database = {
|
|
|
1219
1221
|
Update: {
|
|
1220
1222
|
created_at?: string
|
|
1221
1223
|
first_connected_at?: string | null
|
|
1224
|
+
is_browser_open?: boolean
|
|
1222
1225
|
is_ready?: boolean | null
|
|
1223
1226
|
legacy_version?: boolean | null
|
|
1224
1227
|
org_id?: string
|
|
@@ -1482,6 +1485,13 @@ export type Database = {
|
|
|
1482
1485
|
}
|
|
1483
1486
|
Returns: unknown
|
|
1484
1487
|
}
|
|
1488
|
+
get_chat_members: {
|
|
1489
|
+
Args: {
|
|
1490
|
+
org_id_input?: string
|
|
1491
|
+
chat_id_input?: string[]
|
|
1492
|
+
}
|
|
1493
|
+
Returns: Json
|
|
1494
|
+
}
|
|
1485
1495
|
get_chats: {
|
|
1486
1496
|
Args: {
|
|
1487
1497
|
org_id_input?: string
|
|
@@ -1881,4 +1891,4 @@ export type Enums<
|
|
|
1881
1891
|
: never
|
|
1882
1892
|
|
|
1883
1893
|
|
|
1884
|
-
|
|
1894
|
+
|