@periskope/types 0.6.457 → 0.6.458

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.
@@ -2884,7 +2884,6 @@ export type Database = {
2884
2884
  next_occurrence_at: string;
2885
2885
  occurrence_count: number;
2886
2886
  org_id: string;
2887
- org_phone: string | null;
2888
2887
  org_phones: string[] | null;
2889
2888
  performed_by: string | null;
2890
2889
  repeat_config: Json;
@@ -2901,7 +2900,6 @@ export type Database = {
2901
2900
  next_occurrence_at: string;
2902
2901
  occurrence_count?: number;
2903
2902
  org_id: string;
2904
- org_phone?: string | null;
2905
2903
  org_phones?: string[] | null;
2906
2904
  performed_by?: string | null;
2907
2905
  repeat_config: Json;
@@ -2918,7 +2916,6 @@ export type Database = {
2918
2916
  next_occurrence_at?: string;
2919
2917
  occurrence_count?: number;
2920
2918
  org_id?: string;
2921
- org_phone?: string | null;
2922
2919
  org_phones?: string[] | null;
2923
2920
  performed_by?: string | null;
2924
2921
  repeat_config?: Json;
@@ -3307,10 +3304,10 @@ export type Database = {
3307
3304
  retry_count: number | null;
3308
3305
  scheduled_at: string | null;
3309
3306
  sent_chats: number | null;
3310
- series_is_active: boolean | null;
3311
- series_next_occurrence_at: string | null;
3312
- series_occurrence_count: number | null;
3313
- series_repeat_config: Json | null;
3307
+ is_active: boolean | null;
3308
+ next_occurrence_at: string | null;
3309
+ occurrence_count: number | null;
3310
+ repeat_config: Json | null;
3314
3311
  total_chats: number | null;
3315
3312
  total_delivered_count: number | null;
3316
3313
  total_member_count: number | null;
@@ -3767,6 +3764,7 @@ export type Database = {
3767
3764
  chat_id_input?: string[];
3768
3765
  chat_type_input?: string;
3769
3766
  end_date_input?: string;
3767
+ filter_by_input?: string;
3770
3768
  limit_input?: number;
3771
3769
  offset_input?: number;
3772
3770
  org_id_input: string;