cf-service-sdk-dharani 0.0.71 → 0.0.73

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.
@@ -372,7 +372,9 @@ export type CallCampaignAnalyticsSummary = {
372
372
  };
373
373
  export type CallCampaignInput = {
374
374
  accountId?: InputMaybe<Scalars['ID']['input']>;
375
+ contactIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
375
376
  description?: InputMaybe<Scalars['String']['input']>;
377
+ manualContacts?: InputMaybe<Array<InputMaybe<ManualContactInput>>>;
376
378
  name?: InputMaybe<Scalars['String']['input']>;
377
379
  segmentIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
378
380
  status?: InputMaybe<Scalars['String']['input']>;
@@ -1113,6 +1115,8 @@ export type CompleteCampaign = {
1113
1115
  export type ContactFilterInput = {
1114
1116
  /** Filter by company IDs */
1115
1117
  companyIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1118
+ /** Include these contact IDs in the results (OR logic) */
1119
+ contactIdsToInclude?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1116
1120
  /** Filter by whether the contact's company is a customer */
1117
1121
  isCustomer?: InputMaybe<Scalars['Boolean']['input']>;
1118
1122
  /** Search in contact name, email, title, and company name */
@@ -1283,6 +1287,7 @@ export type CreateNotificationInput = {
1283
1287
  message: Scalars['String']['input'];
1284
1288
  metadata?: InputMaybe<Scalars['JSONString']['input']>;
1285
1289
  notificationType?: InputMaybe<NotificationTypeEnum>;
1290
+ redirectUrl?: InputMaybe<Scalars['String']['input']>;
1286
1291
  title: Scalars['String']['input'];
1287
1292
  userId: Scalars['ID']['input'];
1288
1293
  };
@@ -1610,6 +1615,15 @@ export type LoginWithMicrosoft = {
1610
1615
  token?: Maybe<Scalars['String']['output']>;
1611
1616
  user?: Maybe<UserType>;
1612
1617
  };
1618
+ export type ManualContactInput = {
1619
+ companyCity?: InputMaybe<Scalars['String']['input']>;
1620
+ companyName?: InputMaybe<Scalars['String']['input']>;
1621
+ companyState?: InputMaybe<Scalars['String']['input']>;
1622
+ email?: InputMaybe<Scalars['String']['input']>;
1623
+ firstName?: InputMaybe<Scalars['String']['input']>;
1624
+ lastName?: InputMaybe<Scalars['String']['input']>;
1625
+ phone?: InputMaybe<Scalars['String']['input']>;
1626
+ };
1613
1627
  /** Mark all unread notifications as read for the current user */
1614
1628
  export type MarkAllNotificationsAsRead = {
1615
1629
  __typename?: 'MarkAllNotificationsAsRead';
@@ -2082,6 +2096,8 @@ export type NotificationType = {
2082
2096
  notificationType: AppNotificationNotificationTypeChoices;
2083
2097
  /** Timestamp when the notification was read */
2084
2098
  readAt?: Maybe<Scalars['DateTime']['output']>;
2099
+ /** Optional URL to redirect when notification is clicked */
2100
+ redirectUrl?: Maybe<Scalars['String']['output']>;
2085
2101
  /** Notification title */
2086
2102
  title: Scalars['String']['output'];
2087
2103
  updatedAt: Scalars['DateTime']['output'];
@@ -2707,6 +2723,8 @@ export type SegmentObject = {
2707
2723
  /** Type of segment: USER_GENERATED or SYSTEM_GENERATED */
2708
2724
  segmentType?: Maybe<Scalars['String']['output']>;
2709
2725
  state?: Maybe<Scalars['String']['output']>;
2726
+ /** Status of the segment: active or deleted */
2727
+ status?: Maybe<Scalars['String']['output']>;
2710
2728
  /** Total number of contacts in the segment */
2711
2729
  totalContacts?: Maybe<Scalars['Int']['output']>;
2712
2730
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
@@ -3044,6 +3062,7 @@ export type AddContactsToCampaignMutation = {
3044
3062
  updatedAt?: any | null;
3045
3063
  isSystemTemplate?: boolean | null;
3046
3064
  totalContacts?: number | null;
3065
+ status?: string | null;
3047
3066
  } | null> | null;
3048
3067
  emailTemplate?: {
3049
3068
  __typename?: 'EmailTemplateObject';
@@ -3083,6 +3102,7 @@ export type AddContactsToSegmentMutation = {
3083
3102
  updatedAt?: any | null;
3084
3103
  isSystemTemplate?: boolean | null;
3085
3104
  totalContacts?: number | null;
3105
+ status?: string | null;
3086
3106
  } | null;
3087
3107
  } | null;
3088
3108
  };
@@ -3138,6 +3158,7 @@ export type AddSegmentToCallCampaignMutation = {
3138
3158
  updatedAt?: any | null;
3139
3159
  isSystemTemplate?: boolean | null;
3140
3160
  totalContacts?: number | null;
3161
+ status?: string | null;
3141
3162
  } | null> | null;
3142
3163
  stats?: {
3143
3164
  __typename?: 'CallCampaignStatsObject';
@@ -3206,6 +3227,7 @@ export type AddSegmentToCampaignMutation = {
3206
3227
  updatedAt?: any | null;
3207
3228
  isSystemTemplate?: boolean | null;
3208
3229
  totalContacts?: number | null;
3230
+ status?: string | null;
3209
3231
  } | null> | null;
3210
3232
  emailTemplate?: {
3211
3233
  __typename?: 'EmailTemplateObject';
@@ -3275,6 +3297,7 @@ export type CancelCampaignMutation = {
3275
3297
  updatedAt?: any | null;
3276
3298
  isSystemTemplate?: boolean | null;
3277
3299
  totalContacts?: number | null;
3300
+ status?: string | null;
3278
3301
  } | null> | null;
3279
3302
  emailTemplate?: {
3280
3303
  __typename?: 'EmailTemplateObject';
@@ -3378,6 +3401,7 @@ export type CompleteCampaignMutation = {
3378
3401
  updatedAt?: any | null;
3379
3402
  isSystemTemplate?: boolean | null;
3380
3403
  totalContacts?: number | null;
3404
+ status?: string | null;
3381
3405
  } | null> | null;
3382
3406
  emailTemplate?: {
3383
3407
  __typename?: 'EmailTemplateObject';
@@ -3444,6 +3468,7 @@ export type CreateCallCampaignMutation = {
3444
3468
  updatedAt?: any | null;
3445
3469
  isSystemTemplate?: boolean | null;
3446
3470
  totalContacts?: number | null;
3471
+ status?: string | null;
3447
3472
  } | null> | null;
3448
3473
  stats?: {
3449
3474
  __typename?: 'CallCampaignStatsObject';
@@ -3561,6 +3586,7 @@ export type CreateCallCampaignLogMutation = {
3561
3586
  updatedAt?: any | null;
3562
3587
  isSystemTemplate?: boolean | null;
3563
3588
  totalContacts?: number | null;
3589
+ status?: string | null;
3564
3590
  } | null> | null;
3565
3591
  stats?: {
3566
3592
  __typename?: 'CallCampaignStatsObject';
@@ -3666,6 +3692,7 @@ export type CreateCampaignMutation = {
3666
3692
  updatedAt?: any | null;
3667
3693
  isSystemTemplate?: boolean | null;
3668
3694
  totalContacts?: number | null;
3695
+ status?: string | null;
3669
3696
  } | null> | null;
3670
3697
  emailTemplate?: {
3671
3698
  __typename?: 'EmailTemplateObject';
@@ -4011,6 +4038,7 @@ export type CreateCompanyMutation = {
4011
4038
  updatedAt?: any | null;
4012
4039
  isSystemTemplate?: boolean | null;
4013
4040
  totalContacts?: number | null;
4041
+ status?: string | null;
4014
4042
  } | null> | null;
4015
4043
  stats?: {
4016
4044
  __typename?: 'CallCampaignStatsObject';
@@ -4285,6 +4313,7 @@ export type CreateCompanyMutation = {
4285
4313
  updatedAt?: any | null;
4286
4314
  isSystemTemplate?: boolean | null;
4287
4315
  totalContacts?: number | null;
4316
+ status?: string | null;
4288
4317
  } | null> | null;
4289
4318
  stats?: {
4290
4319
  __typename?: 'CallCampaignStatsObject';
@@ -4526,6 +4555,7 @@ export type CreateCompanyNoteMutation = {
4526
4555
  updatedAt?: any | null;
4527
4556
  isSystemTemplate?: boolean | null;
4528
4557
  totalContacts?: number | null;
4558
+ status?: string | null;
4529
4559
  } | null> | null;
4530
4560
  stats?: {
4531
4561
  __typename?: 'CallCampaignStatsObject';
@@ -4660,6 +4690,7 @@ export type CreateCompanyNoteMutation = {
4660
4690
  updatedAt?: any | null;
4661
4691
  isSystemTemplate?: boolean | null;
4662
4692
  totalContacts?: number | null;
4693
+ status?: string | null;
4663
4694
  } | null> | null;
4664
4695
  stats?: {
4665
4696
  __typename?: 'CallCampaignStatsObject';
@@ -4879,6 +4910,7 @@ export type CreateNotificationMutation = {
4879
4910
  readAt?: any | null;
4880
4911
  metadata: any;
4881
4912
  expiresAt?: any | null;
4913
+ redirectUrl?: string | null;
4882
4914
  } | null;
4883
4915
  } | null;
4884
4916
  };
@@ -4905,6 +4937,7 @@ export type CreateSegmentMutation = {
4905
4937
  updatedAt?: any | null;
4906
4938
  isSystemTemplate?: boolean | null;
4907
4939
  totalContacts?: number | null;
4940
+ status?: string | null;
4908
4941
  } | null;
4909
4942
  } | null;
4910
4943
  };
@@ -4984,6 +5017,7 @@ export type CreateTaskMutation = {
4984
5017
  updatedAt?: any | null;
4985
5018
  isSystemTemplate?: boolean | null;
4986
5019
  totalContacts?: number | null;
5020
+ status?: string | null;
4987
5021
  } | null> | null;
4988
5022
  stats?: {
4989
5023
  __typename?: 'CallCampaignStatsObject';
@@ -5340,6 +5374,7 @@ export type MarkNotificationAsReadMutation = {
5340
5374
  readAt?: any | null;
5341
5375
  metadata: any;
5342
5376
  expiresAt?: any | null;
5377
+ redirectUrl?: string | null;
5343
5378
  } | null;
5344
5379
  } | null;
5345
5380
  };
@@ -5397,6 +5432,7 @@ export type PauseCampaignMutation = {
5397
5432
  updatedAt?: any | null;
5398
5433
  isSystemTemplate?: boolean | null;
5399
5434
  totalContacts?: number | null;
5435
+ status?: string | null;
5400
5436
  } | null> | null;
5401
5437
  emailTemplate?: {
5402
5438
  __typename?: 'EmailTemplateObject';
@@ -5521,6 +5557,7 @@ export type RemoveContactsFromCampaignMutation = {
5521
5557
  updatedAt?: any | null;
5522
5558
  isSystemTemplate?: boolean | null;
5523
5559
  totalContacts?: number | null;
5560
+ status?: string | null;
5524
5561
  } | null> | null;
5525
5562
  emailTemplate?: {
5526
5563
  __typename?: 'EmailTemplateObject';
@@ -5560,6 +5597,7 @@ export type RemoveContactsFromSegmentMutation = {
5560
5597
  updatedAt?: any | null;
5561
5598
  isSystemTemplate?: boolean | null;
5562
5599
  totalContacts?: number | null;
5600
+ status?: string | null;
5563
5601
  } | null;
5564
5602
  } | null;
5565
5603
  };
@@ -5627,6 +5665,7 @@ export type RemoveSegmentFromCallCampaignMutation = {
5627
5665
  updatedAt?: any | null;
5628
5666
  isSystemTemplate?: boolean | null;
5629
5667
  totalContacts?: number | null;
5668
+ status?: string | null;
5630
5669
  } | null> | null;
5631
5670
  stats?: {
5632
5671
  __typename?: 'CallCampaignStatsObject';
@@ -5695,6 +5734,7 @@ export type RemoveSegmentFromCampaignMutation = {
5695
5734
  updatedAt?: any | null;
5696
5735
  isSystemTemplate?: boolean | null;
5697
5736
  totalContacts?: number | null;
5737
+ status?: string | null;
5698
5738
  } | null> | null;
5699
5739
  emailTemplate?: {
5700
5740
  __typename?: 'EmailTemplateObject';
@@ -5787,6 +5827,7 @@ export type ScheduleCampaignMutation = {
5787
5827
  updatedAt?: any | null;
5788
5828
  isSystemTemplate?: boolean | null;
5789
5829
  totalContacts?: number | null;
5830
+ status?: string | null;
5790
5831
  } | null> | null;
5791
5832
  emailTemplate?: {
5792
5833
  __typename?: 'EmailTemplateObject';
@@ -5879,6 +5920,7 @@ export type SendEmailToContactMutation = {
5879
5920
  updatedAt?: any | null;
5880
5921
  isSystemTemplate?: boolean | null;
5881
5922
  totalContacts?: number | null;
5923
+ status?: string | null;
5882
5924
  } | null> | null;
5883
5925
  emailTemplate?: {
5884
5926
  __typename?: 'EmailTemplateObject';
@@ -5906,6 +5948,7 @@ export type SendEmailToContactMutation = {
5906
5948
  updatedAt?: any | null;
5907
5949
  isSystemTemplate?: boolean | null;
5908
5950
  totalContacts?: number | null;
5951
+ status?: string | null;
5909
5952
  } | null;
5910
5953
  contact?: {
5911
5954
  __typename?: 'ContactObject';
@@ -6067,6 +6110,7 @@ export type StartCampaignMutation = {
6067
6110
  updatedAt?: any | null;
6068
6111
  isSystemTemplate?: boolean | null;
6069
6112
  totalContacts?: number | null;
6113
+ status?: string | null;
6070
6114
  } | null> | null;
6071
6115
  emailTemplate?: {
6072
6116
  __typename?: 'EmailTemplateObject';
@@ -6168,6 +6212,7 @@ export type UpdateCallCampaignMutation = {
6168
6212
  updatedAt?: any | null;
6169
6213
  isSystemTemplate?: boolean | null;
6170
6214
  totalContacts?: number | null;
6215
+ status?: string | null;
6171
6216
  } | null> | null;
6172
6217
  stats?: {
6173
6218
  __typename?: 'CallCampaignStatsObject';
@@ -6286,6 +6331,7 @@ export type UpdateCallCampaignLogMutation = {
6286
6331
  updatedAt?: any | null;
6287
6332
  isSystemTemplate?: boolean | null;
6288
6333
  totalContacts?: number | null;
6334
+ status?: string | null;
6289
6335
  } | null> | null;
6290
6336
  stats?: {
6291
6337
  __typename?: 'CallCampaignStatsObject';
@@ -6391,6 +6437,7 @@ export type UpdateCampaignMutation = {
6391
6437
  updatedAt?: any | null;
6392
6438
  isSystemTemplate?: boolean | null;
6393
6439
  totalContacts?: number | null;
6440
+ status?: string | null;
6394
6441
  } | null> | null;
6395
6442
  emailTemplate?: {
6396
6443
  __typename?: 'EmailTemplateObject';
@@ -6736,6 +6783,7 @@ export type UpdateCompanyMutation = {
6736
6783
  updatedAt?: any | null;
6737
6784
  isSystemTemplate?: boolean | null;
6738
6785
  totalContacts?: number | null;
6786
+ status?: string | null;
6739
6787
  } | null> | null;
6740
6788
  stats?: {
6741
6789
  __typename?: 'CallCampaignStatsObject';
@@ -7010,6 +7058,7 @@ export type UpdateCompanyMutation = {
7010
7058
  updatedAt?: any | null;
7011
7059
  isSystemTemplate?: boolean | null;
7012
7060
  totalContacts?: number | null;
7061
+ status?: string | null;
7013
7062
  } | null> | null;
7014
7063
  stats?: {
7015
7064
  __typename?: 'CallCampaignStatsObject';
@@ -7251,6 +7300,7 @@ export type UpdateCompanyNoteMutation = {
7251
7300
  updatedAt?: any | null;
7252
7301
  isSystemTemplate?: boolean | null;
7253
7302
  totalContacts?: number | null;
7303
+ status?: string | null;
7254
7304
  } | null> | null;
7255
7305
  stats?: {
7256
7306
  __typename?: 'CallCampaignStatsObject';
@@ -7385,6 +7435,7 @@ export type UpdateCompanyNoteMutation = {
7385
7435
  updatedAt?: any | null;
7386
7436
  isSystemTemplate?: boolean | null;
7387
7437
  totalContacts?: number | null;
7438
+ status?: string | null;
7388
7439
  } | null> | null;
7389
7440
  stats?: {
7390
7441
  __typename?: 'CallCampaignStatsObject';
@@ -7607,6 +7658,7 @@ export type UpdateSegmentMutation = {
7607
7658
  updatedAt?: any | null;
7608
7659
  isSystemTemplate?: boolean | null;
7609
7660
  totalContacts?: number | null;
7661
+ status?: string | null;
7610
7662
  } | null;
7611
7663
  } | null;
7612
7664
  };
@@ -7687,6 +7739,7 @@ export type UpdateTaskMutation = {
7687
7739
  updatedAt?: any | null;
7688
7740
  isSystemTemplate?: boolean | null;
7689
7741
  totalContacts?: number | null;
7742
+ status?: string | null;
7690
7743
  } | null> | null;
7691
7744
  stats?: {
7692
7745
  __typename?: 'CallCampaignStatsObject';
@@ -7913,6 +7966,7 @@ export type CallCampaignQuery = {
7913
7966
  updatedAt?: any | null;
7914
7967
  isSystemTemplate?: boolean | null;
7915
7968
  totalContacts?: number | null;
7969
+ status?: string | null;
7916
7970
  } | null> | null;
7917
7971
  stats?: {
7918
7972
  __typename?: 'CallCampaignStatsObject';
@@ -8063,6 +8117,7 @@ export type CallCampaignLogQuery = {
8063
8117
  updatedAt?: any | null;
8064
8118
  isSystemTemplate?: boolean | null;
8065
8119
  totalContacts?: number | null;
8120
+ status?: string | null;
8066
8121
  } | null> | null;
8067
8122
  stats?: {
8068
8123
  __typename?: 'CallCampaignStatsObject';
@@ -8218,6 +8273,7 @@ export type CallCampaignLogsQuery = {
8218
8273
  updatedAt?: any | null;
8219
8274
  isSystemTemplate?: boolean | null;
8220
8275
  totalContacts?: number | null;
8276
+ status?: string | null;
8221
8277
  } | null> | null;
8222
8278
  stats?: {
8223
8279
  __typename?: 'CallCampaignStatsObject';
@@ -8386,6 +8442,7 @@ export type CallCampaignReportQuery = {
8386
8442
  updatedAt?: any | null;
8387
8443
  isSystemTemplate?: boolean | null;
8388
8444
  totalContacts?: number | null;
8445
+ status?: string | null;
8389
8446
  } | null> | null;
8390
8447
  stats?: {
8391
8448
  __typename?: 'CallCampaignStatsObject';
@@ -8549,6 +8606,7 @@ export type CallCampaignsQuery = {
8549
8606
  updatedAt?: any | null;
8550
8607
  isSystemTemplate?: boolean | null;
8551
8608
  totalContacts?: number | null;
8609
+ status?: string | null;
8552
8610
  } | null> | null;
8553
8611
  stats?: {
8554
8612
  __typename?: 'CallCampaignStatsObject';
@@ -8621,6 +8679,7 @@ export type CampaignQuery = {
8621
8679
  updatedAt?: any | null;
8622
8680
  isSystemTemplate?: boolean | null;
8623
8681
  totalContacts?: number | null;
8682
+ status?: string | null;
8624
8683
  } | null> | null;
8625
8684
  emailTemplate?: {
8626
8685
  __typename?: 'EmailTemplateObject';
@@ -8904,6 +8963,7 @@ export type CampaignLogsQuery = {
8904
8963
  updatedAt?: any | null;
8905
8964
  isSystemTemplate?: boolean | null;
8906
8965
  totalContacts?: number | null;
8966
+ status?: string | null;
8907
8967
  } | null> | null;
8908
8968
  emailTemplate?: {
8909
8969
  __typename?: 'EmailTemplateObject';
@@ -8931,6 +8991,7 @@ export type CampaignLogsQuery = {
8931
8991
  updatedAt?: any | null;
8932
8992
  isSystemTemplate?: boolean | null;
8933
8993
  totalContacts?: number | null;
8994
+ status?: string | null;
8934
8995
  } | null;
8935
8996
  contact?: {
8936
8997
  __typename?: 'ContactObject';
@@ -9119,6 +9180,7 @@ export type CampaignsQuery = {
9119
9180
  updatedAt?: any | null;
9120
9181
  isSystemTemplate?: boolean | null;
9121
9182
  totalContacts?: number | null;
9183
+ status?: string | null;
9122
9184
  } | null> | null;
9123
9185
  emailTemplate?: {
9124
9186
  __typename?: 'EmailTemplateObject';
@@ -9475,6 +9537,7 @@ export type CompaniesQuery = {
9475
9537
  updatedAt?: any | null;
9476
9538
  isSystemTemplate?: boolean | null;
9477
9539
  totalContacts?: number | null;
9540
+ status?: string | null;
9478
9541
  } | null> | null;
9479
9542
  stats?: {
9480
9543
  __typename?: 'CallCampaignStatsObject';
@@ -9639,6 +9702,7 @@ export type CompaniesQuery = {
9639
9702
  updatedAt?: any | null;
9640
9703
  isSystemTemplate?: boolean | null;
9641
9704
  totalContacts?: number | null;
9705
+ status?: string | null;
9642
9706
  } | null> | null;
9643
9707
  stats?: {
9644
9708
  __typename?: 'CallCampaignStatsObject';
@@ -10116,6 +10180,7 @@ export type CompanyQuery = {
10116
10180
  updatedAt?: any | null;
10117
10181
  isSystemTemplate?: boolean | null;
10118
10182
  totalContacts?: number | null;
10183
+ status?: string | null;
10119
10184
  } | null> | null;
10120
10185
  stats?: {
10121
10186
  __typename?: 'CallCampaignStatsObject';
@@ -10390,6 +10455,7 @@ export type CompanyQuery = {
10390
10455
  updatedAt?: any | null;
10391
10456
  isSystemTemplate?: boolean | null;
10392
10457
  totalContacts?: number | null;
10458
+ status?: string | null;
10393
10459
  } | null> | null;
10394
10460
  stats?: {
10395
10461
  __typename?: 'CallCampaignStatsObject';
@@ -10628,6 +10694,7 @@ export type CompanyNoteQuery = {
10628
10694
  updatedAt?: any | null;
10629
10695
  isSystemTemplate?: boolean | null;
10630
10696
  totalContacts?: number | null;
10697
+ status?: string | null;
10631
10698
  } | null> | null;
10632
10699
  stats?: {
10633
10700
  __typename?: 'CallCampaignStatsObject';
@@ -10762,6 +10829,7 @@ export type CompanyNoteQuery = {
10762
10829
  updatedAt?: any | null;
10763
10830
  isSystemTemplate?: boolean | null;
10764
10831
  totalContacts?: number | null;
10832
+ status?: string | null;
10765
10833
  } | null> | null;
10766
10834
  stats?: {
10767
10835
  __typename?: 'CallCampaignStatsObject';
@@ -10954,6 +11022,7 @@ export type CompanyNotesQuery = {
10954
11022
  updatedAt?: any | null;
10955
11023
  isSystemTemplate?: boolean | null;
10956
11024
  totalContacts?: number | null;
11025
+ status?: string | null;
10957
11026
  } | null> | null;
10958
11027
  stats?: {
10959
11028
  __typename?: 'CallCampaignStatsObject';
@@ -11645,6 +11714,7 @@ export type NotificationQuery = {
11645
11714
  readAt?: any | null;
11646
11715
  metadata: any;
11647
11716
  expiresAt?: any | null;
11717
+ redirectUrl?: string | null;
11648
11718
  } | null;
11649
11719
  };
11650
11720
  export type NotificationsQueryVariables = Exact<{
@@ -11666,6 +11736,7 @@ export type NotificationsQuery = {
11666
11736
  readAt?: any | null;
11667
11737
  metadata: any;
11668
11738
  expiresAt?: any | null;
11739
+ redirectUrl?: string | null;
11669
11740
  } | null> | null;
11670
11741
  };
11671
11742
  export type NylasConnectionQueryVariables = Exact<{
@@ -12296,6 +12367,7 @@ export type RecentHistoryQuery = {
12296
12367
  updatedAt?: any | null;
12297
12368
  isSystemTemplate?: boolean | null;
12298
12369
  totalContacts?: number | null;
12370
+ status?: string | null;
12299
12371
  } | null> | null;
12300
12372
  stats?: {
12301
12373
  __typename?: 'CallCampaignStatsObject';
@@ -12462,6 +12534,7 @@ export type RecentNotificationsQuery = {
12462
12534
  readAt?: any | null;
12463
12535
  metadata: any;
12464
12536
  expiresAt?: any | null;
12537
+ redirectUrl?: string | null;
12465
12538
  } | null> | null;
12466
12539
  };
12467
12540
  export type SearchContactsQueryVariables = Exact<{
@@ -12579,6 +12652,7 @@ export type SegmentQuery = {
12579
12652
  updatedAt?: any | null;
12580
12653
  isSystemTemplate?: boolean | null;
12581
12654
  totalContacts?: number | null;
12655
+ status?: string | null;
12582
12656
  } | null;
12583
12657
  };
12584
12658
  export type SegmentsQueryVariables = Exact<{
@@ -12604,6 +12678,7 @@ export type SegmentsQuery = {
12604
12678
  updatedAt?: any | null;
12605
12679
  isSystemTemplate?: boolean | null;
12606
12680
  totalContacts?: number | null;
12681
+ status?: string | null;
12607
12682
  } | null> | null;
12608
12683
  pagination?: {
12609
12684
  __typename?: 'PaginationInfo';
@@ -12689,6 +12764,7 @@ export type TaskQuery = {
12689
12764
  updatedAt?: any | null;
12690
12765
  isSystemTemplate?: boolean | null;
12691
12766
  totalContacts?: number | null;
12767
+ status?: string | null;
12692
12768
  } | null> | null;
12693
12769
  stats?: {
12694
12770
  __typename?: 'CallCampaignStatsObject';
@@ -12843,6 +12919,7 @@ export type TasksQuery = {
12843
12919
  updatedAt?: any | null;
12844
12920
  isSystemTemplate?: boolean | null;
12845
12921
  totalContacts?: number | null;
12922
+ status?: string | null;
12846
12923
  } | null> | null;
12847
12924
  stats?: {
12848
12925
  __typename?: 'CallCampaignStatsObject';
@@ -545,6 +545,7 @@ exports.AddContactsToCampaignDocument = (0, client_1.gql) `
545
545
  updatedAt
546
546
  isSystemTemplate
547
547
  totalContacts
548
+ status
548
549
  }
549
550
  stats
550
551
  createdAt
@@ -619,6 +620,7 @@ exports.AddContactsToSegmentDocument = (0, client_1.gql) `
619
620
  updatedAt
620
621
  isSystemTemplate
621
622
  totalContacts
623
+ status
622
624
  }
623
625
  success
624
626
  message
@@ -683,6 +685,7 @@ exports.AddSegmentToCallCampaignDocument = (0, client_1.gql) `
683
685
  updatedAt
684
686
  isSystemTemplate
685
687
  totalContacts
688
+ status
686
689
  }
687
690
  status
688
691
  stats {
@@ -752,6 +755,7 @@ exports.AddSegmentToCampaignDocument = (0, client_1.gql) `
752
755
  updatedAt
753
756
  isSystemTemplate
754
757
  totalContacts
758
+ status
755
759
  }
756
760
  stats
757
761
  createdAt
@@ -837,6 +841,7 @@ exports.CancelCampaignDocument = (0, client_1.gql) `
837
841
  updatedAt
838
842
  isSystemTemplate
839
843
  totalContacts
844
+ status
840
845
  }
841
846
  stats
842
847
  createdAt
@@ -1008,6 +1013,7 @@ exports.CompleteCampaignDocument = (0, client_1.gql) `
1008
1013
  updatedAt
1009
1014
  isSystemTemplate
1010
1015
  totalContacts
1016
+ status
1011
1017
  }
1012
1018
  stats
1013
1019
  createdAt
@@ -1101,6 +1107,7 @@ exports.CreateCallCampaignDocument = (0, client_1.gql) `
1101
1107
  updatedAt
1102
1108
  isSystemTemplate
1103
1109
  totalContacts
1110
+ status
1104
1111
  }
1105
1112
  status
1106
1113
  stats {
@@ -1214,6 +1221,7 @@ exports.CreateCallCampaignLogDocument = (0, client_1.gql) `
1214
1221
  updatedAt
1215
1222
  isSystemTemplate
1216
1223
  totalContacts
1224
+ status
1217
1225
  }
1218
1226
  status
1219
1227
  stats {
@@ -1332,6 +1340,7 @@ exports.CreateCampaignDocument = (0, client_1.gql) `
1332
1340
  updatedAt
1333
1341
  isSystemTemplate
1334
1342
  totalContacts
1343
+ status
1335
1344
  }
1336
1345
  stats
1337
1346
  createdAt
@@ -1660,6 +1669,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
1660
1669
  updatedAt
1661
1670
  isSystemTemplate
1662
1671
  totalContacts
1672
+ status
1663
1673
  }
1664
1674
  status
1665
1675
  stats {
@@ -1924,6 +1934,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
1924
1934
  updatedAt
1925
1935
  isSystemTemplate
1926
1936
  totalContacts
1937
+ status
1927
1938
  }
1928
1939
  status
1929
1940
  stats {
@@ -2162,6 +2173,7 @@ exports.CreateCompanyNoteDocument = (0, client_1.gql) `
2162
2173
  updatedAt
2163
2174
  isSystemTemplate
2164
2175
  totalContacts
2176
+ status
2165
2177
  }
2166
2178
  status
2167
2179
  stats {
@@ -2273,6 +2285,7 @@ exports.CreateCompanyNoteDocument = (0, client_1.gql) `
2273
2285
  updatedAt
2274
2286
  isSystemTemplate
2275
2287
  totalContacts
2288
+ status
2276
2289
  }
2277
2290
  status
2278
2291
  stats {
@@ -2562,6 +2575,7 @@ exports.CreateNotificationDocument = (0, client_1.gql) `
2562
2575
  readAt
2563
2576
  metadata
2564
2577
  expiresAt
2578
+ redirectUrl
2565
2579
  }
2566
2580
  success
2567
2581
  message
@@ -2605,6 +2619,7 @@ exports.CreateSegmentDocument = (0, client_1.gql) `
2605
2619
  updatedAt
2606
2620
  isSystemTemplate
2607
2621
  totalContacts
2622
+ status
2608
2623
  }
2609
2624
  success
2610
2625
  message
@@ -2687,6 +2702,7 @@ exports.CreateTaskDocument = (0, client_1.gql) `
2687
2702
  updatedAt
2688
2703
  isSystemTemplate
2689
2704
  totalContacts
2705
+ status
2690
2706
  }
2691
2707
  status
2692
2708
  stats {
@@ -3380,6 +3396,7 @@ exports.MarkNotificationAsReadDocument = (0, client_1.gql) `
3380
3396
  readAt
3381
3397
  metadata
3382
3398
  expiresAt
3399
+ redirectUrl
3383
3400
  }
3384
3401
  success
3385
3402
  message
@@ -3434,6 +3451,7 @@ exports.PauseCampaignDocument = (0, client_1.gql) `
3434
3451
  updatedAt
3435
3452
  isSystemTemplate
3436
3453
  totalContacts
3454
+ status
3437
3455
  }
3438
3456
  stats
3439
3457
  createdAt
@@ -3633,6 +3651,7 @@ exports.RemoveContactsFromCampaignDocument = (0, client_1.gql) `
3633
3651
  updatedAt
3634
3652
  isSystemTemplate
3635
3653
  totalContacts
3654
+ status
3636
3655
  }
3637
3656
  stats
3638
3657
  createdAt
@@ -3708,6 +3727,7 @@ exports.RemoveContactsFromSegmentDocument = (0, client_1.gql) `
3708
3727
  updatedAt
3709
3728
  isSystemTemplate
3710
3729
  totalContacts
3730
+ status
3711
3731
  }
3712
3732
  success
3713
3733
  message
@@ -3802,6 +3822,7 @@ exports.RemoveSegmentFromCallCampaignDocument = (0, client_1.gql) `
3802
3822
  updatedAt
3803
3823
  isSystemTemplate
3804
3824
  totalContacts
3825
+ status
3805
3826
  }
3806
3827
  status
3807
3828
  stats {
@@ -3871,6 +3892,7 @@ exports.RemoveSegmentFromCampaignDocument = (0, client_1.gql) `
3871
3892
  updatedAt
3872
3893
  isSystemTemplate
3873
3894
  totalContacts
3895
+ status
3874
3896
  }
3875
3897
  stats
3876
3898
  createdAt
@@ -3995,6 +4017,7 @@ exports.ScheduleCampaignDocument = (0, client_1.gql) `
3995
4017
  updatedAt
3996
4018
  isSystemTemplate
3997
4019
  totalContacts
4020
+ status
3998
4021
  }
3999
4022
  stats
4000
4023
  createdAt
@@ -4090,6 +4113,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
4090
4113
  updatedAt
4091
4114
  isSystemTemplate
4092
4115
  totalContacts
4116
+ status
4093
4117
  }
4094
4118
  stats
4095
4119
  createdAt
@@ -4134,6 +4158,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
4134
4158
  updatedAt
4135
4159
  isSystemTemplate
4136
4160
  totalContacts
4161
+ status
4137
4162
  }
4138
4163
  contact {
4139
4164
  id
@@ -4343,6 +4368,7 @@ exports.StartCampaignDocument = (0, client_1.gql) `
4343
4368
  updatedAt
4344
4369
  isSystemTemplate
4345
4370
  totalContacts
4371
+ status
4346
4372
  }
4347
4373
  stats
4348
4374
  createdAt
@@ -4524,6 +4550,7 @@ exports.UpdateCallCampaignDocument = (0, client_1.gql) `
4524
4550
  updatedAt
4525
4551
  isSystemTemplate
4526
4552
  totalContacts
4553
+ status
4527
4554
  }
4528
4555
  status
4529
4556
  stats {
@@ -4638,6 +4665,7 @@ exports.UpdateCallCampaignLogDocument = (0, client_1.gql) `
4638
4665
  updatedAt
4639
4666
  isSystemTemplate
4640
4667
  totalContacts
4668
+ status
4641
4669
  }
4642
4670
  status
4643
4671
  stats {
@@ -4757,6 +4785,7 @@ exports.UpdateCampaignDocument = (0, client_1.gql) `
4757
4785
  updatedAt
4758
4786
  isSystemTemplate
4759
4787
  totalContacts
4788
+ status
4760
4789
  }
4761
4790
  stats
4762
4791
  createdAt
@@ -5085,6 +5114,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
5085
5114
  updatedAt
5086
5115
  isSystemTemplate
5087
5116
  totalContacts
5117
+ status
5088
5118
  }
5089
5119
  status
5090
5120
  stats {
@@ -5349,6 +5379,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
5349
5379
  updatedAt
5350
5380
  isSystemTemplate
5351
5381
  totalContacts
5382
+ status
5352
5383
  }
5353
5384
  status
5354
5385
  stats {
@@ -5587,6 +5618,7 @@ exports.UpdateCompanyNoteDocument = (0, client_1.gql) `
5587
5618
  updatedAt
5588
5619
  isSystemTemplate
5589
5620
  totalContacts
5621
+ status
5590
5622
  }
5591
5623
  status
5592
5624
  stats {
@@ -5698,6 +5730,7 @@ exports.UpdateCompanyNoteDocument = (0, client_1.gql) `
5698
5730
  updatedAt
5699
5731
  isSystemTemplate
5700
5732
  totalContacts
5733
+ status
5701
5734
  }
5702
5735
  status
5703
5736
  stats {
@@ -5990,6 +6023,7 @@ exports.UpdateSegmentDocument = (0, client_1.gql) `
5990
6023
  updatedAt
5991
6024
  isSystemTemplate
5992
6025
  totalContacts
6026
+ status
5993
6027
  }
5994
6028
  success
5995
6029
  message
@@ -6072,6 +6106,7 @@ exports.UpdateTaskDocument = (0, client_1.gql) `
6072
6106
  updatedAt
6073
6107
  isSystemTemplate
6074
6108
  totalContacts
6109
+ status
6075
6110
  }
6076
6111
  status
6077
6112
  stats {
@@ -6419,6 +6454,7 @@ exports.CallCampaignDocument = (0, client_1.gql) `
6419
6454
  updatedAt
6420
6455
  isSystemTemplate
6421
6456
  totalContacts
6457
+ status
6422
6458
  }
6423
6459
  status
6424
6460
  stats {
@@ -6600,6 +6636,7 @@ exports.CallCampaignLogDocument = (0, client_1.gql) `
6600
6636
  updatedAt
6601
6637
  isSystemTemplate
6602
6638
  totalContacts
6639
+ status
6603
6640
  }
6604
6641
  status
6605
6642
  stats {
@@ -6772,6 +6809,7 @@ exports.CallCampaignLogsDocument = (0, client_1.gql) `
6772
6809
  updatedAt
6773
6810
  isSystemTemplate
6774
6811
  totalContacts
6812
+ status
6775
6813
  }
6776
6814
  status
6777
6815
  stats {
@@ -6963,6 +7001,7 @@ exports.CallCampaignReportDocument = (0, client_1.gql) `
6963
7001
  updatedAt
6964
7002
  isSystemTemplate
6965
7003
  totalContacts
7004
+ status
6966
7005
  }
6967
7006
  status
6968
7007
  stats {
@@ -7143,6 +7182,7 @@ exports.CallCampaignsDocument = (0, client_1.gql) `
7143
7182
  updatedAt
7144
7183
  isSystemTemplate
7145
7184
  totalContacts
7185
+ status
7146
7186
  }
7147
7187
  status
7148
7188
  stats {
@@ -7225,6 +7265,7 @@ exports.CampaignDocument = (0, client_1.gql) `
7225
7265
  updatedAt
7226
7266
  isSystemTemplate
7227
7267
  totalContacts
7268
+ status
7228
7269
  }
7229
7270
  stats
7230
7271
  createdAt
@@ -7543,6 +7584,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
7543
7584
  updatedAt
7544
7585
  isSystemTemplate
7545
7586
  totalContacts
7587
+ status
7546
7588
  }
7547
7589
  stats
7548
7590
  createdAt
@@ -7587,6 +7629,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
7587
7629
  updatedAt
7588
7630
  isSystemTemplate
7589
7631
  totalContacts
7632
+ status
7590
7633
  }
7591
7634
  contact {
7592
7635
  id
@@ -7806,6 +7849,7 @@ exports.CampaignsDocument = (0, client_1.gql) `
7806
7849
  updatedAt
7807
7850
  isSystemTemplate
7808
7851
  totalContacts
7852
+ status
7809
7853
  }
7810
7854
  stats
7811
7855
  createdAt
@@ -8149,6 +8193,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
8149
8193
  updatedAt
8150
8194
  isSystemTemplate
8151
8195
  totalContacts
8196
+ status
8152
8197
  }
8153
8198
  status
8154
8199
  stats {
@@ -8311,6 +8356,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
8311
8356
  updatedAt
8312
8357
  isSystemTemplate
8313
8358
  totalContacts
8359
+ status
8314
8360
  }
8315
8361
  status
8316
8362
  stats {
@@ -8765,6 +8811,7 @@ exports.CompanyDocument = (0, client_1.gql) `
8765
8811
  updatedAt
8766
8812
  isSystemTemplate
8767
8813
  totalContacts
8814
+ status
8768
8815
  }
8769
8816
  status
8770
8817
  stats {
@@ -9029,6 +9076,7 @@ exports.CompanyDocument = (0, client_1.gql) `
9029
9076
  updatedAt
9030
9077
  isSystemTemplate
9031
9078
  totalContacts
9079
+ status
9032
9080
  }
9033
9081
  status
9034
9082
  stats {
@@ -9272,6 +9320,7 @@ exports.CompanyNoteDocument = (0, client_1.gql) `
9272
9320
  updatedAt
9273
9321
  isSystemTemplate
9274
9322
  totalContacts
9323
+ status
9275
9324
  }
9276
9325
  status
9277
9326
  stats {
@@ -9383,6 +9432,7 @@ exports.CompanyNoteDocument = (0, client_1.gql) `
9383
9432
  updatedAt
9384
9433
  isSystemTemplate
9385
9434
  totalContacts
9435
+ status
9386
9436
  }
9387
9437
  status
9388
9438
  stats {
@@ -9600,6 +9650,7 @@ exports.CompanyNotesDocument = (0, client_1.gql) `
9600
9650
  updatedAt
9601
9651
  isSystemTemplate
9602
9652
  totalContacts
9653
+ status
9603
9654
  }
9604
9655
  status
9605
9656
  stats {
@@ -10610,6 +10661,7 @@ exports.NotificationDocument = (0, client_1.gql) `
10610
10661
  readAt
10611
10662
  metadata
10612
10663
  expiresAt
10664
+ redirectUrl
10613
10665
  }
10614
10666
  }
10615
10667
  `;
@@ -10654,6 +10706,7 @@ exports.NotificationsDocument = (0, client_1.gql) `
10654
10706
  readAt
10655
10707
  metadata
10656
10708
  expiresAt
10709
+ redirectUrl
10657
10710
  }
10658
10711
  }
10659
10712
  `;
@@ -11325,6 +11378,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
11325
11378
  updatedAt
11326
11379
  isSystemTemplate
11327
11380
  totalContacts
11381
+ status
11328
11382
  }
11329
11383
  status
11330
11384
  stats {
@@ -11536,6 +11590,7 @@ exports.RecentNotificationsDocument = (0, client_1.gql) `
11536
11590
  readAt
11537
11591
  metadata
11538
11592
  expiresAt
11593
+ redirectUrl
11539
11594
  }
11540
11595
  }
11541
11596
  `;
@@ -11694,6 +11749,7 @@ exports.SegmentDocument = (0, client_1.gql) `
11694
11749
  updatedAt
11695
11750
  isSystemTemplate
11696
11751
  totalContacts
11752
+ status
11697
11753
  }
11698
11754
  }
11699
11755
  `;
@@ -11745,6 +11801,7 @@ exports.SegmentsDocument = (0, client_1.gql) `
11745
11801
  updatedAt
11746
11802
  isSystemTemplate
11747
11803
  totalContacts
11804
+ status
11748
11805
  }
11749
11806
  pagination {
11750
11807
  currentPage
@@ -11841,6 +11898,7 @@ exports.TaskDocument = (0, client_1.gql) `
11841
11898
  updatedAt
11842
11899
  isSystemTemplate
11843
11900
  totalContacts
11901
+ status
11844
11902
  }
11845
11903
  status
11846
11904
  stats {
@@ -12008,6 +12066,7 @@ exports.TasksDocument = (0, client_1.gql) `
12008
12066
  updatedAt
12009
12067
  isSystemTemplate
12010
12068
  totalContacts
12069
+ status
12011
12070
  }
12012
12071
  status
12013
12072
  stats {
package/dist/mutations.js CHANGED
@@ -612,6 +612,7 @@ mutation CreateCompany($input: CompanyInput) {
612
612
  updatedAt
613
613
  isSystemTemplate
614
614
  totalContacts
615
+ status
615
616
  }
616
617
  status
617
618
  stats {
@@ -876,6 +877,7 @@ mutation CreateCompany($input: CompanyInput) {
876
877
  updatedAt
877
878
  isSystemTemplate
878
879
  totalContacts
880
+ status
879
881
  }
880
882
  status
881
883
  stats {
@@ -1291,6 +1293,7 @@ mutation UpdateCompany($input: CompanyInput) {
1291
1293
  updatedAt
1292
1294
  isSystemTemplate
1293
1295
  totalContacts
1296
+ status
1294
1297
  }
1295
1298
  status
1296
1299
  stats {
@@ -1555,6 +1558,7 @@ mutation UpdateCompany($input: CompanyInput) {
1555
1558
  updatedAt
1556
1559
  isSystemTemplate
1557
1560
  totalContacts
1561
+ status
1558
1562
  }
1559
1563
  status
1560
1564
  stats {
@@ -1721,6 +1725,7 @@ mutation CreateSegment($input: SegmentInput!) {
1721
1725
  updatedAt
1722
1726
  isSystemTemplate
1723
1727
  totalContacts
1728
+ status
1724
1729
  }
1725
1730
  success
1726
1731
  message
@@ -1742,6 +1747,7 @@ mutation UpdateSegment($input: SegmentInput!) {
1742
1747
  updatedAt
1743
1748
  isSystemTemplate
1744
1749
  totalContacts
1750
+ status
1745
1751
  }
1746
1752
  success
1747
1753
  message
@@ -1770,6 +1776,7 @@ mutation AddContactsToSegment($contactIds: [ID]!, $segmentId: ID!) {
1770
1776
  updatedAt
1771
1777
  isSystemTemplate
1772
1778
  totalContacts
1779
+ status
1773
1780
  }
1774
1781
  success
1775
1782
  message
@@ -1791,6 +1798,7 @@ mutation RemoveContactsFromSegment($contactIds: [ID]!, $segmentId: ID!) {
1791
1798
  updatedAt
1792
1799
  isSystemTemplate
1793
1800
  totalContacts
1801
+ status
1794
1802
  }
1795
1803
  success
1796
1804
  message
@@ -1823,6 +1831,7 @@ mutation AddContactsToCampaign($campaignId: ID!, $contacts: [CustomContactInput]
1823
1831
  updatedAt
1824
1832
  isSystemTemplate
1825
1833
  totalContacts
1834
+ status
1826
1835
  }
1827
1836
  stats
1828
1837
  createdAt
@@ -1885,6 +1894,7 @@ mutation RemoveContactsFromCampaign($campaignId: ID!, $contactIds: [ID], $custom
1885
1894
  updatedAt
1886
1895
  isSystemTemplate
1887
1896
  totalContacts
1897
+ status
1888
1898
  }
1889
1899
  stats
1890
1900
  createdAt
@@ -1947,6 +1957,7 @@ mutation CreateCampaign($input: CampaignInput!) {
1947
1957
  updatedAt
1948
1958
  isSystemTemplate
1949
1959
  totalContacts
1960
+ status
1950
1961
  }
1951
1962
  stats
1952
1963
  createdAt
@@ -2009,6 +2020,7 @@ mutation UpdateCampaign($input: UpdateCampaignInput!) {
2009
2020
  updatedAt
2010
2021
  isSystemTemplate
2011
2022
  totalContacts
2023
+ status
2012
2024
  }
2013
2025
  stats
2014
2026
  createdAt
@@ -2078,6 +2090,7 @@ mutation AddSegmentToCampaign($campaignId: ID!, $segmentId: ID!) {
2078
2090
  updatedAt
2079
2091
  isSystemTemplate
2080
2092
  totalContacts
2093
+ status
2081
2094
  }
2082
2095
  stats
2083
2096
  createdAt
@@ -2140,6 +2153,7 @@ mutation RemoveSegmentFromCampaign($campaignId: ID!, $segmentId: ID!) {
2140
2153
  updatedAt
2141
2154
  isSystemTemplate
2142
2155
  totalContacts
2156
+ status
2143
2157
  }
2144
2158
  stats
2145
2159
  createdAt
@@ -2202,6 +2216,7 @@ mutation StartCampaign($id: ID!) {
2202
2216
  updatedAt
2203
2217
  isSystemTemplate
2204
2218
  totalContacts
2219
+ status
2205
2220
  }
2206
2221
  stats
2207
2222
  createdAt
@@ -2264,6 +2279,7 @@ mutation PauseCampaign($id: ID!) {
2264
2279
  updatedAt
2265
2280
  isSystemTemplate
2266
2281
  totalContacts
2282
+ status
2267
2283
  }
2268
2284
  stats
2269
2285
  createdAt
@@ -2326,6 +2342,7 @@ mutation CompleteCampaign($id: ID!) {
2326
2342
  updatedAt
2327
2343
  isSystemTemplate
2328
2344
  totalContacts
2345
+ status
2329
2346
  }
2330
2347
  stats
2331
2348
  createdAt
@@ -2388,6 +2405,7 @@ mutation CancelCampaign($id: ID!) {
2388
2405
  updatedAt
2389
2406
  isSystemTemplate
2390
2407
  totalContacts
2408
+ status
2391
2409
  }
2392
2410
  stats
2393
2411
  createdAt
@@ -2461,6 +2479,7 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
2461
2479
  updatedAt
2462
2480
  isSystemTemplate
2463
2481
  totalContacts
2482
+ status
2464
2483
  }
2465
2484
  stats
2466
2485
  createdAt
@@ -2505,6 +2524,7 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
2505
2524
  updatedAt
2506
2525
  isSystemTemplate
2507
2526
  totalContacts
2527
+ status
2508
2528
  }
2509
2529
  contact {
2510
2530
  id
@@ -2620,6 +2640,7 @@ mutation ScheduleCampaign($id: ID!, $scheduledFor: DateTime!) {
2620
2640
  updatedAt
2621
2641
  isSystemTemplate
2622
2642
  totalContacts
2643
+ status
2623
2644
  }
2624
2645
  stats
2625
2646
  createdAt
@@ -2780,6 +2801,7 @@ mutation CreateNotification($input: CreateNotificationInput!) {
2780
2801
  readAt
2781
2802
  metadata
2782
2803
  expiresAt
2804
+ redirectUrl
2783
2805
  }
2784
2806
  success
2785
2807
  message
@@ -2799,6 +2821,7 @@ mutation MarkNotificationAsRead($notificationId: ID!) {
2799
2821
  readAt
2800
2822
  metadata
2801
2823
  expiresAt
2824
+ redirectUrl
2802
2825
  }
2803
2826
  success
2804
2827
  message
@@ -2882,6 +2905,7 @@ mutation CreateTask($input: CreateTaskInput!) {
2882
2905
  updatedAt
2883
2906
  isSystemTemplate
2884
2907
  totalContacts
2908
+ status
2885
2909
  }
2886
2910
  status
2887
2911
  stats {
@@ -3022,6 +3046,7 @@ mutation UpdateTask($id: Int!, $input: UpdateTaskInput!) {
3022
3046
  updatedAt
3023
3047
  isSystemTemplate
3024
3048
  totalContacts
3049
+ status
3025
3050
  }
3026
3051
  status
3027
3052
  stats {
@@ -3149,6 +3174,7 @@ mutation CreateCallCampaign($input: CallCampaignInput!) {
3149
3174
  updatedAt
3150
3175
  isSystemTemplate
3151
3176
  totalContacts
3177
+ status
3152
3178
  }
3153
3179
  status
3154
3180
  stats {
@@ -3204,6 +3230,7 @@ mutation UpdateCallCampaign($id: ID!, $input: CallCampaignInput!) {
3204
3230
  updatedAt
3205
3231
  isSystemTemplate
3206
3232
  totalContacts
3233
+ status
3207
3234
  }
3208
3235
  status
3209
3236
  stats {
@@ -3266,6 +3293,7 @@ mutation AddSegmentToCallCampaign($campaignId: ID!, $segmentId: ID!) {
3266
3293
  updatedAt
3267
3294
  isSystemTemplate
3268
3295
  totalContacts
3296
+ status
3269
3297
  }
3270
3298
  status
3271
3299
  stats {
@@ -3321,6 +3349,7 @@ mutation RemoveSegmentFromCallCampaign($campaignId: ID!, $segmentId: ID!) {
3321
3349
  updatedAt
3322
3350
  isSystemTemplate
3323
3351
  totalContacts
3352
+ status
3324
3353
  }
3325
3354
  status
3326
3355
  stats {
@@ -3412,6 +3441,7 @@ mutation CreateCallCampaignLog($input: CallCampaignLogInput!) {
3412
3441
  updatedAt
3413
3442
  isSystemTemplate
3414
3443
  totalContacts
3444
+ status
3415
3445
  }
3416
3446
  status
3417
3447
  stats {
@@ -3553,6 +3583,7 @@ mutation UpdateCallCampaignLog($id: ID!, $input: CallCampaignLogInput!) {
3553
3583
  updatedAt
3554
3584
  isSystemTemplate
3555
3585
  totalContacts
3586
+ status
3556
3587
  }
3557
3588
  status
3558
3589
  stats {
@@ -3694,6 +3725,7 @@ mutation CreateCompanyNote($input: CompanyNoteInput!) {
3694
3725
  updatedAt
3695
3726
  isSystemTemplate
3696
3727
  totalContacts
3728
+ status
3697
3729
  }
3698
3730
  status
3699
3731
  stats {
@@ -3805,6 +3837,7 @@ mutation CreateCompanyNote($input: CompanyNoteInput!) {
3805
3837
  updatedAt
3806
3838
  isSystemTemplate
3807
3839
  totalContacts
3840
+ status
3808
3841
  }
3809
3842
  status
3810
3843
  stats {
@@ -3994,6 +4027,7 @@ mutation UpdateCompanyNote($input: CompanyNoteInput!) {
3994
4027
  updatedAt
3995
4028
  isSystemTemplate
3996
4029
  totalContacts
4030
+ status
3997
4031
  }
3998
4032
  status
3999
4033
  stats {
@@ -4105,6 +4139,7 @@ mutation UpdateCompanyNote($input: CompanyNoteInput!) {
4105
4139
  updatedAt
4106
4140
  isSystemTemplate
4107
4141
  totalContacts
4142
+ status
4108
4143
  }
4109
4144
  status
4110
4145
  stats {
package/dist/queries.js CHANGED
@@ -502,6 +502,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
502
502
  updatedAt
503
503
  isSystemTemplate
504
504
  totalContacts
505
+ status
505
506
  }
506
507
  status
507
508
  stats {
@@ -741,6 +742,7 @@ query CompanyNotes($filters: CompanyNoteFilterInput, $pagination: PaginationInpu
741
742
  updatedAt
742
743
  isSystemTemplate
743
744
  totalContacts
745
+ status
744
746
  }
745
747
  status
746
748
  stats {
@@ -1034,6 +1036,7 @@ query CompanyNote($id: ID!) {
1034
1036
  updatedAt
1035
1037
  isSystemTemplate
1036
1038
  totalContacts
1039
+ status
1037
1040
  }
1038
1041
  status
1039
1042
  stats {
@@ -1145,6 +1148,7 @@ query CompanyNote($id: ID!) {
1145
1148
  updatedAt
1146
1149
  isSystemTemplate
1147
1150
  totalContacts
1151
+ status
1148
1152
  }
1149
1153
  status
1150
1154
  stats {
@@ -1297,6 +1301,7 @@ query CallCampaigns($pagination: PaginationInput!, $sortBy: String, $status: Str
1297
1301
  updatedAt
1298
1302
  isSystemTemplate
1299
1303
  totalContacts
1304
+ status
1300
1305
  }
1301
1306
  status
1302
1307
  stats {
@@ -1357,6 +1362,7 @@ query CallCampaign($id: ID!) {
1357
1362
  updatedAt
1358
1363
  isSystemTemplate
1359
1364
  totalContacts
1365
+ status
1360
1366
  }
1361
1367
  status
1362
1368
  stats {
@@ -1475,6 +1481,7 @@ query CallCampaignLogs($callCampaignId: ID!, $pagination: PaginationInput!, $sea
1475
1481
  updatedAt
1476
1482
  isSystemTemplate
1477
1483
  totalContacts
1484
+ status
1478
1485
  }
1479
1486
  status
1480
1487
  stats {
@@ -1633,6 +1640,7 @@ query CallCampaignLog($id: ID!) {
1633
1640
  updatedAt
1634
1641
  isSystemTemplate
1635
1642
  totalContacts
1643
+ status
1636
1644
  }
1637
1645
  status
1638
1646
  stats {
@@ -1771,6 +1779,7 @@ query CallCampaignReport($filters: CallReportFilterInput, $pagination: Paginatio
1771
1779
  updatedAt
1772
1780
  isSystemTemplate
1773
1781
  totalContacts
1782
+ status
1774
1783
  }
1775
1784
  status
1776
1785
  stats {
@@ -1940,6 +1949,7 @@ query Tasks($filters: TaskFilterInput, $sortBy: String, $sortDirection: String)
1940
1949
  updatedAt
1941
1950
  isSystemTemplate
1942
1951
  totalContacts
1952
+ status
1943
1953
  }
1944
1954
  status
1945
1955
  stats {
@@ -2094,6 +2104,7 @@ query Task($id: Int!) {
2094
2104
  updatedAt
2095
2105
  isSystemTemplate
2096
2106
  totalContacts
2107
+ status
2097
2108
  }
2098
2109
  status
2099
2110
  stats {
@@ -2194,6 +2205,7 @@ query Notifications($limit: Int, $offset: Int, $unreadOnly: Boolean) {
2194
2205
  readAt
2195
2206
  metadata
2196
2207
  expiresAt
2208
+ redirectUrl
2197
2209
  }
2198
2210
  }`;
2199
2211
  exports.NOTIFICATION = (0, client_1.gql) `
@@ -2209,6 +2221,7 @@ query Notification($id: ID!) {
2209
2221
  readAt
2210
2222
  metadata
2211
2223
  expiresAt
2224
+ redirectUrl
2212
2225
  }
2213
2226
  }`;
2214
2227
  exports.RECENT_NOTIFICATIONS = (0, client_1.gql) `
@@ -2224,6 +2237,7 @@ query RecentNotifications($limit: Int) {
2224
2237
  readAt
2225
2238
  metadata
2226
2239
  expiresAt
2240
+ redirectUrl
2227
2241
  }
2228
2242
  }`;
2229
2243
  exports.NYLAS_CONNECTION = (0, client_1.gql) `
@@ -2291,6 +2305,7 @@ query Campaigns($pagination: PaginationInput!, $status: String, $sortBy: String)
2291
2305
  updatedAt
2292
2306
  isSystemTemplate
2293
2307
  totalContacts
2308
+ status
2294
2309
  }
2295
2310
  stats
2296
2311
  createdAt
@@ -2358,6 +2373,7 @@ query Campaign($id: ID!) {
2358
2373
  updatedAt
2359
2374
  isSystemTemplate
2360
2375
  totalContacts
2376
+ status
2361
2377
  }
2362
2378
  stats
2363
2379
  createdAt
@@ -2553,6 +2569,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
2553
2569
  updatedAt
2554
2570
  isSystemTemplate
2555
2571
  totalContacts
2572
+ status
2556
2573
  }
2557
2574
  stats
2558
2575
  createdAt
@@ -2597,6 +2614,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
2597
2614
  updatedAt
2598
2615
  isSystemTemplate
2599
2616
  totalContacts
2617
+ status
2600
2618
  }
2601
2619
  contact {
2602
2620
  id
@@ -2778,6 +2796,7 @@ query Segments($pagination: PaginationInput, $includeSystemTemplates: Boolean, $
2778
2796
  updatedAt
2779
2797
  isSystemTemplate
2780
2798
  totalContacts
2799
+ status
2781
2800
  }
2782
2801
  pagination {
2783
2802
  currentPage
@@ -2804,6 +2823,7 @@ query Segment($id: ID!) {
2804
2823
  updatedAt
2805
2824
  isSystemTemplate
2806
2825
  totalContacts
2826
+ status
2807
2827
  }
2808
2828
  }`;
2809
2829
  exports.CONTACTS_IN_SEGMENT = (0, client_1.gql) `
@@ -3158,6 +3178,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
3158
3178
  updatedAt
3159
3179
  isSystemTemplate
3160
3180
  totalContacts
3181
+ status
3161
3182
  }
3162
3183
  status
3163
3184
  stats {
@@ -3320,6 +3341,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
3320
3341
  updatedAt
3321
3342
  isSystemTemplate
3322
3343
  totalContacts
3344
+ status
3323
3345
  }
3324
3346
  status
3325
3347
  stats {
@@ -3895,6 +3917,7 @@ query Company($id: String) {
3895
3917
  updatedAt
3896
3918
  isSystemTemplate
3897
3919
  totalContacts
3920
+ status
3898
3921
  }
3899
3922
  status
3900
3923
  stats {
@@ -4159,6 +4182,7 @@ query Company($id: String) {
4159
4182
  updatedAt
4160
4183
  isSystemTemplate
4161
4184
  totalContacts
4185
+ status
4162
4186
  }
4163
4187
  status
4164
4188
  stats {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk-dharani",
3
- "version": "0.0.71",
3
+ "version": "0.0.73",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",