@periskope/types 0.6.118 → 0.6.119
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 +3 -0
- package/package.json +1 -1
- package/supabase.types.ts +3 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -336,6 +336,7 @@ export type Database = {
|
|
|
336
336
|
org_id: string;
|
|
337
337
|
org_phone: string;
|
|
338
338
|
performed_by: string | null;
|
|
339
|
+
poll_vote_info: Json | null;
|
|
339
340
|
prev_body: string | null;
|
|
340
341
|
quoted_message_id: string | null;
|
|
341
342
|
raw_data: Json | null;
|
|
@@ -388,6 +389,7 @@ export type Database = {
|
|
|
388
389
|
org_id: string;
|
|
389
390
|
org_phone: string;
|
|
390
391
|
performed_by?: string | null;
|
|
392
|
+
poll_vote_info?: Json | null;
|
|
391
393
|
prev_body?: string | null;
|
|
392
394
|
quoted_message_id?: string | null;
|
|
393
395
|
raw_data?: Json | null;
|
|
@@ -440,6 +442,7 @@ export type Database = {
|
|
|
440
442
|
org_id?: string;
|
|
441
443
|
org_phone?: string;
|
|
442
444
|
performed_by?: string | null;
|
|
445
|
+
poll_vote_info?: Json | null;
|
|
443
446
|
prev_body?: string | null;
|
|
444
447
|
quoted_message_id?: string | null;
|
|
445
448
|
raw_data?: Json | null;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -341,6 +341,7 @@ export type Database = {
|
|
|
341
341
|
org_id: string
|
|
342
342
|
org_phone: string
|
|
343
343
|
performed_by: string | null
|
|
344
|
+
poll_vote_info: Json | null
|
|
344
345
|
prev_body: string | null
|
|
345
346
|
quoted_message_id: string | null
|
|
346
347
|
raw_data: Json | null
|
|
@@ -393,6 +394,7 @@ export type Database = {
|
|
|
393
394
|
org_id: string
|
|
394
395
|
org_phone: string
|
|
395
396
|
performed_by?: string | null
|
|
397
|
+
poll_vote_info?: Json | null
|
|
396
398
|
prev_body?: string | null
|
|
397
399
|
quoted_message_id?: string | null
|
|
398
400
|
raw_data?: Json | null
|
|
@@ -445,6 +447,7 @@ export type Database = {
|
|
|
445
447
|
org_id?: string
|
|
446
448
|
org_phone?: string
|
|
447
449
|
performed_by?: string | null
|
|
450
|
+
poll_vote_info?: Json | null
|
|
448
451
|
prev_body?: string | null
|
|
449
452
|
quoted_message_id?: string | null
|
|
450
453
|
raw_data?: Json | null
|