cf-service-sdk 0.0.55 → 0.0.57

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.
@@ -1474,8 +1474,8 @@ export type EmailToneInput = {
1474
1474
  emailContent: Scalars['String']['input'];
1475
1475
  /** Number of variations to generate (default: 3) */
1476
1476
  numVariations?: InputMaybe<Scalars['Int']['input']>;
1477
- /** List of previous variations to avoid repetition */
1478
- previousVariations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1477
+ /** Previous variations to avoid repetition */
1478
+ previousVariations?: InputMaybe<Scalars['JSONString']['input']>;
1479
1479
  /** Original email subject (optional) */
1480
1480
  subject?: InputMaybe<Scalars['String']['input']>;
1481
1481
  /** Tone instruction (e.g., 'Persuasive', 'Technical', 'Friendly') */
@@ -1718,6 +1718,8 @@ export type Mutation = {
1718
1718
  pauseCampaign?: Maybe<PauseCampaign>;
1719
1719
  /** Preview how a campaign email would look for a specific contact without sending it */
1720
1720
  previewCampaignEmail?: Maybe<PreviewCampaignEmail>;
1721
+ /** ReduceSpam - Reduce spam score of email content using Claude LLM */
1722
+ reduceSpam?: Maybe<ReduceSpam>;
1721
1723
  /** RejectInvitation - Reject an invitation to join an account */
1722
1724
  rejectInvitation?: Maybe<RejectInvitation>;
1723
1725
  removeContactsFromCampaign?: Maybe<RemoveContactsFromCampaign>;
@@ -1921,6 +1923,10 @@ export type MutationPreviewCampaignEmailArgs = {
1921
1923
  customTemplate?: InputMaybe<Scalars['String']['input']>;
1922
1924
  };
1923
1925
  /** Mutations */
1926
+ export type MutationReduceSpamArgs = {
1927
+ input: ReduceSpamInput;
1928
+ };
1929
+ /** Mutations */
1924
1930
  export type MutationRejectInvitationArgs = {
1925
1931
  input: InvitationResponseInput;
1926
1932
  };
@@ -2556,6 +2562,33 @@ export type RecentlyContactedContactType = {
2556
2562
  daysSinceContact?: Maybe<Scalars['Int']['output']>;
2557
2563
  lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
2558
2564
  };
2565
+ /** ReduceSpam - Reduce spam score of email content using Claude LLM */
2566
+ export type ReduceSpam = {
2567
+ __typename?: 'ReduceSpam';
2568
+ message?: Maybe<Scalars['String']['output']>;
2569
+ reduceSpamResponse?: Maybe<ReduceSpamResponse>;
2570
+ success?: Maybe<Scalars['Boolean']['output']>;
2571
+ };
2572
+ /** ReduceSpamInput for reducing spam score of email content */
2573
+ export type ReduceSpamInput = {
2574
+ /** Original email content */
2575
+ emailContent: Scalars['String']['input'];
2576
+ /** Original email subject (optional) */
2577
+ subject?: InputMaybe<Scalars['String']['input']>;
2578
+ };
2579
+ /** ReduceSpamResponse - Response for spam reduction */
2580
+ export type ReduceSpamResponse = {
2581
+ __typename?: 'ReduceSpamResponse';
2582
+ changesMade?: Maybe<Scalars['JSONString']['output']>;
2583
+ cleanedContent?: Maybe<Scalars['String']['output']>;
2584
+ cleanedSubject?: Maybe<Scalars['String']['output']>;
2585
+ message?: Maybe<Scalars['String']['output']>;
2586
+ noChangesNeeded?: Maybe<Scalars['Boolean']['output']>;
2587
+ noOfChanges?: Maybe<Scalars['Int']['output']>;
2588
+ originalContent?: Maybe<Scalars['String']['output']>;
2589
+ originalSubject?: Maybe<Scalars['String']['output']>;
2590
+ success?: Maybe<Scalars['Boolean']['output']>;
2591
+ };
2559
2592
  /** RejectInvitation - Reject an invitation to join an account */
2560
2593
  export type RejectInvitation = {
2561
2594
  __typename?: 'RejectInvitation';
@@ -2674,6 +2707,8 @@ export type SegmentObject = {
2674
2707
  /** Type of segment: USER_GENERATED or SYSTEM_GENERATED */
2675
2708
  segmentType?: Maybe<Scalars['String']['output']>;
2676
2709
  state?: Maybe<Scalars['String']['output']>;
2710
+ /** Status of the segment: active or deleted */
2711
+ status?: Maybe<Scalars['String']['output']>;
2677
2712
  /** Total number of contacts in the segment */
2678
2713
  totalContacts?: Maybe<Scalars['Int']['output']>;
2679
2714
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -3011,6 +3046,7 @@ export type AddContactsToCampaignMutation = {
3011
3046
  updatedAt?: any | null;
3012
3047
  isSystemTemplate?: boolean | null;
3013
3048
  totalContacts?: number | null;
3049
+ status?: string | null;
3014
3050
  } | null> | null;
3015
3051
  emailTemplate?: {
3016
3052
  __typename?: 'EmailTemplateObject';
@@ -3050,6 +3086,7 @@ export type AddContactsToSegmentMutation = {
3050
3086
  updatedAt?: any | null;
3051
3087
  isSystemTemplate?: boolean | null;
3052
3088
  totalContacts?: number | null;
3089
+ status?: string | null;
3053
3090
  } | null;
3054
3091
  } | null;
3055
3092
  };
@@ -3105,6 +3142,7 @@ export type AddSegmentToCallCampaignMutation = {
3105
3142
  updatedAt?: any | null;
3106
3143
  isSystemTemplate?: boolean | null;
3107
3144
  totalContacts?: number | null;
3145
+ status?: string | null;
3108
3146
  } | null> | null;
3109
3147
  stats?: {
3110
3148
  __typename?: 'CallCampaignStatsObject';
@@ -3173,6 +3211,7 @@ export type AddSegmentToCampaignMutation = {
3173
3211
  updatedAt?: any | null;
3174
3212
  isSystemTemplate?: boolean | null;
3175
3213
  totalContacts?: number | null;
3214
+ status?: string | null;
3176
3215
  } | null> | null;
3177
3216
  emailTemplate?: {
3178
3217
  __typename?: 'EmailTemplateObject';
@@ -3242,6 +3281,7 @@ export type CancelCampaignMutation = {
3242
3281
  updatedAt?: any | null;
3243
3282
  isSystemTemplate?: boolean | null;
3244
3283
  totalContacts?: number | null;
3284
+ status?: string | null;
3245
3285
  } | null> | null;
3246
3286
  emailTemplate?: {
3247
3287
  __typename?: 'EmailTemplateObject';
@@ -3345,6 +3385,7 @@ export type CompleteCampaignMutation = {
3345
3385
  updatedAt?: any | null;
3346
3386
  isSystemTemplate?: boolean | null;
3347
3387
  totalContacts?: number | null;
3388
+ status?: string | null;
3348
3389
  } | null> | null;
3349
3390
  emailTemplate?: {
3350
3391
  __typename?: 'EmailTemplateObject';
@@ -3411,6 +3452,7 @@ export type CreateCallCampaignMutation = {
3411
3452
  updatedAt?: any | null;
3412
3453
  isSystemTemplate?: boolean | null;
3413
3454
  totalContacts?: number | null;
3455
+ status?: string | null;
3414
3456
  } | null> | null;
3415
3457
  stats?: {
3416
3458
  __typename?: 'CallCampaignStatsObject';
@@ -3528,6 +3570,7 @@ export type CreateCallCampaignLogMutation = {
3528
3570
  updatedAt?: any | null;
3529
3571
  isSystemTemplate?: boolean | null;
3530
3572
  totalContacts?: number | null;
3573
+ status?: string | null;
3531
3574
  } | null> | null;
3532
3575
  stats?: {
3533
3576
  __typename?: 'CallCampaignStatsObject';
@@ -3633,6 +3676,7 @@ export type CreateCampaignMutation = {
3633
3676
  updatedAt?: any | null;
3634
3677
  isSystemTemplate?: boolean | null;
3635
3678
  totalContacts?: number | null;
3679
+ status?: string | null;
3636
3680
  } | null> | null;
3637
3681
  emailTemplate?: {
3638
3682
  __typename?: 'EmailTemplateObject';
@@ -3978,6 +4022,7 @@ export type CreateCompanyMutation = {
3978
4022
  updatedAt?: any | null;
3979
4023
  isSystemTemplate?: boolean | null;
3980
4024
  totalContacts?: number | null;
4025
+ status?: string | null;
3981
4026
  } | null> | null;
3982
4027
  stats?: {
3983
4028
  __typename?: 'CallCampaignStatsObject';
@@ -4252,6 +4297,7 @@ export type CreateCompanyMutation = {
4252
4297
  updatedAt?: any | null;
4253
4298
  isSystemTemplate?: boolean | null;
4254
4299
  totalContacts?: number | null;
4300
+ status?: string | null;
4255
4301
  } | null> | null;
4256
4302
  stats?: {
4257
4303
  __typename?: 'CallCampaignStatsObject';
@@ -4493,6 +4539,7 @@ export type CreateCompanyNoteMutation = {
4493
4539
  updatedAt?: any | null;
4494
4540
  isSystemTemplate?: boolean | null;
4495
4541
  totalContacts?: number | null;
4542
+ status?: string | null;
4496
4543
  } | null> | null;
4497
4544
  stats?: {
4498
4545
  __typename?: 'CallCampaignStatsObject';
@@ -4627,6 +4674,7 @@ export type CreateCompanyNoteMutation = {
4627
4674
  updatedAt?: any | null;
4628
4675
  isSystemTemplate?: boolean | null;
4629
4676
  totalContacts?: number | null;
4677
+ status?: string | null;
4630
4678
  } | null> | null;
4631
4679
  stats?: {
4632
4680
  __typename?: 'CallCampaignStatsObject';
@@ -4872,6 +4920,7 @@ export type CreateSegmentMutation = {
4872
4920
  updatedAt?: any | null;
4873
4921
  isSystemTemplate?: boolean | null;
4874
4922
  totalContacts?: number | null;
4923
+ status?: string | null;
4875
4924
  } | null;
4876
4925
  } | null;
4877
4926
  };
@@ -4951,6 +5000,7 @@ export type CreateTaskMutation = {
4951
5000
  updatedAt?: any | null;
4952
5001
  isSystemTemplate?: boolean | null;
4953
5002
  totalContacts?: number | null;
5003
+ status?: string | null;
4954
5004
  } | null> | null;
4955
5005
  stats?: {
4956
5006
  __typename?: 'CallCampaignStatsObject';
@@ -5364,6 +5414,7 @@ export type PauseCampaignMutation = {
5364
5414
  updatedAt?: any | null;
5365
5415
  isSystemTemplate?: boolean | null;
5366
5416
  totalContacts?: number | null;
5417
+ status?: string | null;
5367
5418
  } | null> | null;
5368
5419
  emailTemplate?: {
5369
5420
  __typename?: 'EmailTemplateObject';
@@ -5398,6 +5449,29 @@ export type PreviewCampaignEmailMutation = {
5398
5449
  companyName?: string | null;
5399
5450
  } | null;
5400
5451
  };
5452
+ export type ReduceSpamMutationVariables = Exact<{
5453
+ input: ReduceSpamInput;
5454
+ }>;
5455
+ export type ReduceSpamMutation = {
5456
+ __typename?: 'Mutation';
5457
+ reduceSpam?: {
5458
+ __typename?: 'ReduceSpam';
5459
+ success?: boolean | null;
5460
+ message?: string | null;
5461
+ reduceSpamResponse?: {
5462
+ __typename?: 'ReduceSpamResponse';
5463
+ success?: boolean | null;
5464
+ message?: string | null;
5465
+ originalSubject?: string | null;
5466
+ cleanedSubject?: string | null;
5467
+ originalContent?: string | null;
5468
+ cleanedContent?: string | null;
5469
+ changesMade?: any | null;
5470
+ noOfChanges?: number | null;
5471
+ noChangesNeeded?: boolean | null;
5472
+ } | null;
5473
+ } | null;
5474
+ };
5401
5475
  export type RejectInvitationMutationVariables = Exact<{
5402
5476
  input: InvitationResponseInput;
5403
5477
  }>;
@@ -5465,6 +5539,7 @@ export type RemoveContactsFromCampaignMutation = {
5465
5539
  updatedAt?: any | null;
5466
5540
  isSystemTemplate?: boolean | null;
5467
5541
  totalContacts?: number | null;
5542
+ status?: string | null;
5468
5543
  } | null> | null;
5469
5544
  emailTemplate?: {
5470
5545
  __typename?: 'EmailTemplateObject';
@@ -5504,6 +5579,7 @@ export type RemoveContactsFromSegmentMutation = {
5504
5579
  updatedAt?: any | null;
5505
5580
  isSystemTemplate?: boolean | null;
5506
5581
  totalContacts?: number | null;
5582
+ status?: string | null;
5507
5583
  } | null;
5508
5584
  } | null;
5509
5585
  };
@@ -5571,6 +5647,7 @@ export type RemoveSegmentFromCallCampaignMutation = {
5571
5647
  updatedAt?: any | null;
5572
5648
  isSystemTemplate?: boolean | null;
5573
5649
  totalContacts?: number | null;
5650
+ status?: string | null;
5574
5651
  } | null> | null;
5575
5652
  stats?: {
5576
5653
  __typename?: 'CallCampaignStatsObject';
@@ -5639,6 +5716,7 @@ export type RemoveSegmentFromCampaignMutation = {
5639
5716
  updatedAt?: any | null;
5640
5717
  isSystemTemplate?: boolean | null;
5641
5718
  totalContacts?: number | null;
5719
+ status?: string | null;
5642
5720
  } | null> | null;
5643
5721
  emailTemplate?: {
5644
5722
  __typename?: 'EmailTemplateObject';
@@ -5731,6 +5809,7 @@ export type ScheduleCampaignMutation = {
5731
5809
  updatedAt?: any | null;
5732
5810
  isSystemTemplate?: boolean | null;
5733
5811
  totalContacts?: number | null;
5812
+ status?: string | null;
5734
5813
  } | null> | null;
5735
5814
  emailTemplate?: {
5736
5815
  __typename?: 'EmailTemplateObject';
@@ -5823,6 +5902,7 @@ export type SendEmailToContactMutation = {
5823
5902
  updatedAt?: any | null;
5824
5903
  isSystemTemplate?: boolean | null;
5825
5904
  totalContacts?: number | null;
5905
+ status?: string | null;
5826
5906
  } | null> | null;
5827
5907
  emailTemplate?: {
5828
5908
  __typename?: 'EmailTemplateObject';
@@ -5850,6 +5930,7 @@ export type SendEmailToContactMutation = {
5850
5930
  updatedAt?: any | null;
5851
5931
  isSystemTemplate?: boolean | null;
5852
5932
  totalContacts?: number | null;
5933
+ status?: string | null;
5853
5934
  } | null;
5854
5935
  contact?: {
5855
5936
  __typename?: 'ContactObject';
@@ -6011,6 +6092,7 @@ export type StartCampaignMutation = {
6011
6092
  updatedAt?: any | null;
6012
6093
  isSystemTemplate?: boolean | null;
6013
6094
  totalContacts?: number | null;
6095
+ status?: string | null;
6014
6096
  } | null> | null;
6015
6097
  emailTemplate?: {
6016
6098
  __typename?: 'EmailTemplateObject';
@@ -6112,6 +6194,7 @@ export type UpdateCallCampaignMutation = {
6112
6194
  updatedAt?: any | null;
6113
6195
  isSystemTemplate?: boolean | null;
6114
6196
  totalContacts?: number | null;
6197
+ status?: string | null;
6115
6198
  } | null> | null;
6116
6199
  stats?: {
6117
6200
  __typename?: 'CallCampaignStatsObject';
@@ -6230,6 +6313,7 @@ export type UpdateCallCampaignLogMutation = {
6230
6313
  updatedAt?: any | null;
6231
6314
  isSystemTemplate?: boolean | null;
6232
6315
  totalContacts?: number | null;
6316
+ status?: string | null;
6233
6317
  } | null> | null;
6234
6318
  stats?: {
6235
6319
  __typename?: 'CallCampaignStatsObject';
@@ -6335,6 +6419,7 @@ export type UpdateCampaignMutation = {
6335
6419
  updatedAt?: any | null;
6336
6420
  isSystemTemplate?: boolean | null;
6337
6421
  totalContacts?: number | null;
6422
+ status?: string | null;
6338
6423
  } | null> | null;
6339
6424
  emailTemplate?: {
6340
6425
  __typename?: 'EmailTemplateObject';
@@ -6680,6 +6765,7 @@ export type UpdateCompanyMutation = {
6680
6765
  updatedAt?: any | null;
6681
6766
  isSystemTemplate?: boolean | null;
6682
6767
  totalContacts?: number | null;
6768
+ status?: string | null;
6683
6769
  } | null> | null;
6684
6770
  stats?: {
6685
6771
  __typename?: 'CallCampaignStatsObject';
@@ -6954,6 +7040,7 @@ export type UpdateCompanyMutation = {
6954
7040
  updatedAt?: any | null;
6955
7041
  isSystemTemplate?: boolean | null;
6956
7042
  totalContacts?: number | null;
7043
+ status?: string | null;
6957
7044
  } | null> | null;
6958
7045
  stats?: {
6959
7046
  __typename?: 'CallCampaignStatsObject';
@@ -7195,6 +7282,7 @@ export type UpdateCompanyNoteMutation = {
7195
7282
  updatedAt?: any | null;
7196
7283
  isSystemTemplate?: boolean | null;
7197
7284
  totalContacts?: number | null;
7285
+ status?: string | null;
7198
7286
  } | null> | null;
7199
7287
  stats?: {
7200
7288
  __typename?: 'CallCampaignStatsObject';
@@ -7329,6 +7417,7 @@ export type UpdateCompanyNoteMutation = {
7329
7417
  updatedAt?: any | null;
7330
7418
  isSystemTemplate?: boolean | null;
7331
7419
  totalContacts?: number | null;
7420
+ status?: string | null;
7332
7421
  } | null> | null;
7333
7422
  stats?: {
7334
7423
  __typename?: 'CallCampaignStatsObject';
@@ -7551,6 +7640,7 @@ export type UpdateSegmentMutation = {
7551
7640
  updatedAt?: any | null;
7552
7641
  isSystemTemplate?: boolean | null;
7553
7642
  totalContacts?: number | null;
7643
+ status?: string | null;
7554
7644
  } | null;
7555
7645
  } | null;
7556
7646
  };
@@ -7631,6 +7721,7 @@ export type UpdateTaskMutation = {
7631
7721
  updatedAt?: any | null;
7632
7722
  isSystemTemplate?: boolean | null;
7633
7723
  totalContacts?: number | null;
7724
+ status?: string | null;
7634
7725
  } | null> | null;
7635
7726
  stats?: {
7636
7727
  __typename?: 'CallCampaignStatsObject';
@@ -7857,6 +7948,7 @@ export type CallCampaignQuery = {
7857
7948
  updatedAt?: any | null;
7858
7949
  isSystemTemplate?: boolean | null;
7859
7950
  totalContacts?: number | null;
7951
+ status?: string | null;
7860
7952
  } | null> | null;
7861
7953
  stats?: {
7862
7954
  __typename?: 'CallCampaignStatsObject';
@@ -8007,6 +8099,7 @@ export type CallCampaignLogQuery = {
8007
8099
  updatedAt?: any | null;
8008
8100
  isSystemTemplate?: boolean | null;
8009
8101
  totalContacts?: number | null;
8102
+ status?: string | null;
8010
8103
  } | null> | null;
8011
8104
  stats?: {
8012
8105
  __typename?: 'CallCampaignStatsObject';
@@ -8162,6 +8255,7 @@ export type CallCampaignLogsQuery = {
8162
8255
  updatedAt?: any | null;
8163
8256
  isSystemTemplate?: boolean | null;
8164
8257
  totalContacts?: number | null;
8258
+ status?: string | null;
8165
8259
  } | null> | null;
8166
8260
  stats?: {
8167
8261
  __typename?: 'CallCampaignStatsObject';
@@ -8330,6 +8424,7 @@ export type CallCampaignReportQuery = {
8330
8424
  updatedAt?: any | null;
8331
8425
  isSystemTemplate?: boolean | null;
8332
8426
  totalContacts?: number | null;
8427
+ status?: string | null;
8333
8428
  } | null> | null;
8334
8429
  stats?: {
8335
8430
  __typename?: 'CallCampaignStatsObject';
@@ -8493,6 +8588,7 @@ export type CallCampaignsQuery = {
8493
8588
  updatedAt?: any | null;
8494
8589
  isSystemTemplate?: boolean | null;
8495
8590
  totalContacts?: number | null;
8591
+ status?: string | null;
8496
8592
  } | null> | null;
8497
8593
  stats?: {
8498
8594
  __typename?: 'CallCampaignStatsObject';
@@ -8565,6 +8661,7 @@ export type CampaignQuery = {
8565
8661
  updatedAt?: any | null;
8566
8662
  isSystemTemplate?: boolean | null;
8567
8663
  totalContacts?: number | null;
8664
+ status?: string | null;
8568
8665
  } | null> | null;
8569
8666
  emailTemplate?: {
8570
8667
  __typename?: 'EmailTemplateObject';
@@ -8848,6 +8945,7 @@ export type CampaignLogsQuery = {
8848
8945
  updatedAt?: any | null;
8849
8946
  isSystemTemplate?: boolean | null;
8850
8947
  totalContacts?: number | null;
8948
+ status?: string | null;
8851
8949
  } | null> | null;
8852
8950
  emailTemplate?: {
8853
8951
  __typename?: 'EmailTemplateObject';
@@ -8875,6 +8973,7 @@ export type CampaignLogsQuery = {
8875
8973
  updatedAt?: any | null;
8876
8974
  isSystemTemplate?: boolean | null;
8877
8975
  totalContacts?: number | null;
8976
+ status?: string | null;
8878
8977
  } | null;
8879
8978
  contact?: {
8880
8979
  __typename?: 'ContactObject';
@@ -9063,6 +9162,7 @@ export type CampaignsQuery = {
9063
9162
  updatedAt?: any | null;
9064
9163
  isSystemTemplate?: boolean | null;
9065
9164
  totalContacts?: number | null;
9165
+ status?: string | null;
9066
9166
  } | null> | null;
9067
9167
  emailTemplate?: {
9068
9168
  __typename?: 'EmailTemplateObject';
@@ -9419,6 +9519,7 @@ export type CompaniesQuery = {
9419
9519
  updatedAt?: any | null;
9420
9520
  isSystemTemplate?: boolean | null;
9421
9521
  totalContacts?: number | null;
9522
+ status?: string | null;
9422
9523
  } | null> | null;
9423
9524
  stats?: {
9424
9525
  __typename?: 'CallCampaignStatsObject';
@@ -9583,6 +9684,7 @@ export type CompaniesQuery = {
9583
9684
  updatedAt?: any | null;
9584
9685
  isSystemTemplate?: boolean | null;
9585
9686
  totalContacts?: number | null;
9687
+ status?: string | null;
9586
9688
  } | null> | null;
9587
9689
  stats?: {
9588
9690
  __typename?: 'CallCampaignStatsObject';
@@ -10060,6 +10162,7 @@ export type CompanyQuery = {
10060
10162
  updatedAt?: any | null;
10061
10163
  isSystemTemplate?: boolean | null;
10062
10164
  totalContacts?: number | null;
10165
+ status?: string | null;
10063
10166
  } | null> | null;
10064
10167
  stats?: {
10065
10168
  __typename?: 'CallCampaignStatsObject';
@@ -10334,6 +10437,7 @@ export type CompanyQuery = {
10334
10437
  updatedAt?: any | null;
10335
10438
  isSystemTemplate?: boolean | null;
10336
10439
  totalContacts?: number | null;
10440
+ status?: string | null;
10337
10441
  } | null> | null;
10338
10442
  stats?: {
10339
10443
  __typename?: 'CallCampaignStatsObject';
@@ -10572,6 +10676,7 @@ export type CompanyNoteQuery = {
10572
10676
  updatedAt?: any | null;
10573
10677
  isSystemTemplate?: boolean | null;
10574
10678
  totalContacts?: number | null;
10679
+ status?: string | null;
10575
10680
  } | null> | null;
10576
10681
  stats?: {
10577
10682
  __typename?: 'CallCampaignStatsObject';
@@ -10706,6 +10811,7 @@ export type CompanyNoteQuery = {
10706
10811
  updatedAt?: any | null;
10707
10812
  isSystemTemplate?: boolean | null;
10708
10813
  totalContacts?: number | null;
10814
+ status?: string | null;
10709
10815
  } | null> | null;
10710
10816
  stats?: {
10711
10817
  __typename?: 'CallCampaignStatsObject';
@@ -10898,6 +11004,7 @@ export type CompanyNotesQuery = {
10898
11004
  updatedAt?: any | null;
10899
11005
  isSystemTemplate?: boolean | null;
10900
11006
  totalContacts?: number | null;
11007
+ status?: string | null;
10901
11008
  } | null> | null;
10902
11009
  stats?: {
10903
11010
  __typename?: 'CallCampaignStatsObject';
@@ -12240,6 +12347,7 @@ export type RecentHistoryQuery = {
12240
12347
  updatedAt?: any | null;
12241
12348
  isSystemTemplate?: boolean | null;
12242
12349
  totalContacts?: number | null;
12350
+ status?: string | null;
12243
12351
  } | null> | null;
12244
12352
  stats?: {
12245
12353
  __typename?: 'CallCampaignStatsObject';
@@ -12523,6 +12631,7 @@ export type SegmentQuery = {
12523
12631
  updatedAt?: any | null;
12524
12632
  isSystemTemplate?: boolean | null;
12525
12633
  totalContacts?: number | null;
12634
+ status?: string | null;
12526
12635
  } | null;
12527
12636
  };
12528
12637
  export type SegmentsQueryVariables = Exact<{
@@ -12548,6 +12657,7 @@ export type SegmentsQuery = {
12548
12657
  updatedAt?: any | null;
12549
12658
  isSystemTemplate?: boolean | null;
12550
12659
  totalContacts?: number | null;
12660
+ status?: string | null;
12551
12661
  } | null> | null;
12552
12662
  pagination?: {
12553
12663
  __typename?: 'PaginationInfo';
@@ -12633,6 +12743,7 @@ export type TaskQuery = {
12633
12743
  updatedAt?: any | null;
12634
12744
  isSystemTemplate?: boolean | null;
12635
12745
  totalContacts?: number | null;
12746
+ status?: string | null;
12636
12747
  } | null> | null;
12637
12748
  stats?: {
12638
12749
  __typename?: 'CallCampaignStatsObject';
@@ -12787,6 +12898,7 @@ export type TasksQuery = {
12787
12898
  updatedAt?: any | null;
12788
12899
  isSystemTemplate?: boolean | null;
12789
12900
  totalContacts?: number | null;
12901
+ status?: string | null;
12790
12902
  } | null> | null;
12791
12903
  stats?: {
12792
12904
  __typename?: 'CallCampaignStatsObject';
@@ -13969,6 +14081,31 @@ export declare function usePreviewCampaignEmailMutation(baseOptions?: Apollo.Mut
13969
14081
  export type PreviewCampaignEmailMutationHookResult = ReturnType<typeof usePreviewCampaignEmailMutation>;
13970
14082
  export type PreviewCampaignEmailMutationResult = Apollo.MutationResult<PreviewCampaignEmailMutation>;
13971
14083
  export type PreviewCampaignEmailMutationOptions = Apollo.BaseMutationOptions<PreviewCampaignEmailMutation, PreviewCampaignEmailMutationVariables>;
14084
+ export declare const ReduceSpamDocument: Apollo.DocumentNode;
14085
+ export type ReduceSpamMutationFn = Apollo.MutationFunction<ReduceSpamMutation, ReduceSpamMutationVariables>;
14086
+ /**
14087
+ * __useReduceSpamMutation__
14088
+ *
14089
+ * To run a mutation, you first call `useReduceSpamMutation` within a React component and pass it any options that fit your needs.
14090
+ * When your component renders, `useReduceSpamMutation` returns a tuple that includes:
14091
+ * - A mutate function that you can call at any time to execute the mutation
14092
+ * - An object with fields that represent the current status of the mutation's execution
14093
+ *
14094
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
14095
+ *
14096
+ * @example
14097
+ * const [reduceSpamMutation, { data, loading, error }] = useReduceSpamMutation({
14098
+ * variables: {
14099
+ * input: // value for 'input'
14100
+ * },
14101
+ * });
14102
+ */
14103
+ export declare function useReduceSpamMutation(baseOptions?: Apollo.MutationHookOptions<ReduceSpamMutation, ReduceSpamMutationVariables>): Apollo.MutationTuple<ReduceSpamMutation, Exact<{
14104
+ input: ReduceSpamInput;
14105
+ }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
14106
+ export type ReduceSpamMutationHookResult = ReturnType<typeof useReduceSpamMutation>;
14107
+ export type ReduceSpamMutationResult = Apollo.MutationResult<ReduceSpamMutation>;
14108
+ export type ReduceSpamMutationOptions = Apollo.BaseMutationOptions<ReduceSpamMutation, ReduceSpamMutationVariables>;
13972
14109
  export declare const RejectInvitationDocument: Apollo.DocumentNode;
13973
14110
  export type RejectInvitationMutationFn = Apollo.MutationFunction<RejectInvitationMutation, RejectInvitationMutationVariables>;
13974
14111
  /**