@periskope/types 0.6.473 → 0.6.474

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.
@@ -2586,6 +2586,7 @@ export type Database = {
2586
2586
  Row: {
2587
2587
  color: string;
2588
2588
  created_at: string;
2589
+ is_disabled: boolean;
2589
2590
  label_id: string;
2590
2591
  name: string;
2591
2592
  org_id: string;
@@ -2594,6 +2595,7 @@ export type Database = {
2594
2595
  Insert: {
2595
2596
  color?: string;
2596
2597
  created_at?: string;
2598
+ is_disabled?: boolean;
2597
2599
  label_id?: string;
2598
2600
  name: string;
2599
2601
  org_id: string;
@@ -2602,6 +2604,7 @@ export type Database = {
2602
2604
  Update: {
2603
2605
  color?: string;
2604
2606
  created_at?: string;
2607
+ is_disabled?: boolean;
2605
2608
  label_id?: string;
2606
2609
  name?: string;
2607
2610
  org_id?: string;
@@ -3177,10 +3180,12 @@ export type Database = {
3177
3180
  message_payload: Json | null;
3178
3181
  org_id: string;
3179
3182
  org_phone: string | null;
3183
+ paused_at: string | null;
3180
3184
  performed_by: string | null;
3181
3185
  repeat_config: Json | null;
3182
3186
  scheduled_at: string;
3183
3187
  scheduled_id: string;
3188
+ skip_next: boolean;
3184
3189
  updated_at: string | null;
3185
3190
  };
3186
3191
  Insert: {
@@ -3190,10 +3195,12 @@ export type Database = {
3190
3195
  message_payload?: Json | null;
3191
3196
  org_id: string;
3192
3197
  org_phone?: string | null;
3198
+ paused_at?: string | null;
3193
3199
  performed_by?: string | null;
3194
3200
  repeat_config?: Json | null;
3195
3201
  scheduled_at: string;
3196
3202
  scheduled_id?: string;
3203
+ skip_next?: boolean;
3197
3204
  updated_at?: string | null;
3198
3205
  };
3199
3206
  Update: {
@@ -3203,10 +3210,12 @@ export type Database = {
3203
3210
  message_payload?: Json | null;
3204
3211
  org_id?: string;
3205
3212
  org_phone?: string | null;
3213
+ paused_at?: string | null;
3206
3214
  performed_by?: string | null;
3207
3215
  repeat_config?: Json | null;
3208
3216
  scheduled_at?: string;
3209
3217
  scheduled_id?: string;
3218
+ skip_next?: boolean;
3210
3219
  updated_at?: string | null;
3211
3220
  };
3212
3221
  Relationships: [
@@ -3342,6 +3351,7 @@ export type Database = {
3342
3351
  is_success: boolean | null;
3343
3352
  message_id: string | null;
3344
3353
  org_id: string | null;
3354
+ remarks: string | null;
3345
3355
  scheduled_id: string;
3346
3356
  sent_message_id: string | null;
3347
3357
  };
@@ -3353,6 +3363,7 @@ export type Database = {
3353
3363
  is_success?: boolean | null;
3354
3364
  message_id?: string | null;
3355
3365
  org_id?: string | null;
3366
+ remarks?: string | null;
3356
3367
  scheduled_id: string;
3357
3368
  sent_message_id?: string | null;
3358
3369
  };
@@ -3364,6 +3375,7 @@ export type Database = {
3364
3375
  is_success?: boolean | null;
3365
3376
  message_id?: string | null;
3366
3377
  org_id?: string | null;
3378
+ remarks?: string | null;
3367
3379
  scheduled_id?: string;
3368
3380
  sent_message_id?: string | null;
3369
3381
  };
@@ -3905,11 +3917,14 @@ export type Database = {
3905
3917
  chat_id: string | null;
3906
3918
  failed_count: number | null;
3907
3919
  is_repeat: boolean | null;
3920
+ last_remark: string | null;
3908
3921
  message_payload: Json | null;
3909
3922
  org_id: string | null;
3923
+ paused_at: string | null;
3910
3924
  performed_by: string | null;
3911
3925
  scheduled_id: string | null;
3912
3926
  sent_count: number | null;
3927
+ skipped_count: number | null;
3913
3928
  success_count: number | null;
3914
3929
  updated_at: string | null;
3915
3930
  };