cf-service-sdk 0.0.61 → 0.0.63

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.
@@ -411,7 +411,7 @@ export type CallCampaignLogObject = {
411
411
  businessOpportunities?: Maybe<Scalars['JSONString']['output']>;
412
412
  businessRevenue?: Maybe<Scalars['String']['output']>;
413
413
  businessSize?: Maybe<Scalars['String']['output']>;
414
- campaignId?: Maybe<Scalars['Int']['output']>;
414
+ campaignId?: Maybe<Scalars['ID']['output']>;
415
415
  campaignName?: Maybe<Scalars['String']['output']>;
416
416
  contactId?: Maybe<Scalars['Int']['output']>;
417
417
  contactName?: Maybe<Scalars['String']['output']>;
@@ -513,7 +513,7 @@ export type CallReportFilterInput = {
513
513
  export type CallReportLogObject = {
514
514
  __typename?: 'CallReportLogObject';
515
515
  businessOpportunities?: Maybe<Scalars['JSONString']['output']>;
516
- campaignId?: Maybe<Scalars['Int']['output']>;
516
+ campaignId?: Maybe<Scalars['ID']['output']>;
517
517
  campaignName?: Maybe<Scalars['String']['output']>;
518
518
  companyId?: Maybe<Scalars['Int']['output']>;
519
519
  companyName?: Maybe<Scalars['String']['output']>;
@@ -527,6 +527,8 @@ export type CallReportLogObject = {
527
527
  productsOfInterest?: Maybe<Scalars['JSONString']['output']>;
528
528
  salespersonId?: Maybe<Scalars['Int']['output']>;
529
529
  salespersonName?: Maybe<Scalars['String']['output']>;
530
+ /** Source of the call log: 'CallCampaign' or 'CombinedCampaign' */
531
+ source?: Maybe<Scalars['String']['output']>;
530
532
  tasks?: Maybe<Array<Maybe<TaskObject>>>;
531
533
  timestamp?: Maybe<Scalars['DateTime']['output']>;
532
534
  };
@@ -965,6 +967,7 @@ export type CombinedCampaignStepInput = {
965
967
  taskPriority?: InputMaybe<Scalars['String']['input']>;
966
968
  taskTitle?: InputMaybe<Scalars['String']['input']>;
967
969
  template?: InputMaybe<Scalars['String']['input']>;
970
+ useBusinessDays?: InputMaybe<Scalars['Boolean']['input']>;
968
971
  uuid?: InputMaybe<Scalars['ID']['input']>;
969
972
  };
970
973
  /** GraphQL type for Combined Campaign Step */
@@ -986,6 +989,7 @@ export type CombinedCampaignStepObject = {
986
989
  taskTitle?: Maybe<Scalars['String']['output']>;
987
990
  template?: Maybe<Scalars['String']['output']>;
988
991
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
992
+ useBusinessDays?: Maybe<Scalars['Boolean']['output']>;
989
993
  uuid?: Maybe<Scalars['String']['output']>;
990
994
  };
991
995
  /** Statistics for a campaign step */
@@ -1862,6 +1866,8 @@ export type LastContactedViaType = {
1862
1866
  noteId?: Maybe<Scalars['ID']['output']>;
1863
1867
  /** Type of note if action_type is 'note' */
1864
1868
  noteType?: Maybe<Scalars['String']['output']>;
1869
+ /** Step order for combined campaigns (0-based) */
1870
+ stepOrder?: Maybe<Scalars['Int']['output']>;
1865
1871
  /** Step type for combined campaigns (manual_call, manual_email, automated_email, task) */
1866
1872
  stepType?: Maybe<Scalars['String']['output']>;
1867
1873
  };
@@ -3892,6 +3898,7 @@ export type CancelCombinedCampaignMutation = {
3892
3898
  delay?: number | null;
3893
3899
  delayUnit?: string | null;
3894
3900
  condition?: string | null;
3901
+ useBusinessDays?: boolean | null;
3895
3902
  settings?: any | null;
3896
3903
  createdAt?: any | null;
3897
3904
  updatedAt?: any | null;
@@ -4121,7 +4128,7 @@ export type CreateCallCampaignLogMutation = {
4121
4128
  productsOfInterest?: any | null;
4122
4129
  businessOpportunities?: any | null;
4123
4130
  currentSupplier?: string | null;
4124
- campaignId?: number | null;
4131
+ campaignId?: string | null;
4125
4132
  campaignName?: string | null;
4126
4133
  segmentId?: number | null;
4127
4134
  segmentName?: string | null;
@@ -4365,6 +4372,7 @@ export type CreateCombinedCampaignMutation = {
4365
4372
  delay?: number | null;
4366
4373
  delayUnit?: string | null;
4367
4374
  condition?: string | null;
4375
+ useBusinessDays?: boolean | null;
4368
4376
  settings?: any | null;
4369
4377
  createdAt?: any | null;
4370
4378
  updatedAt?: any | null;
@@ -4532,6 +4540,7 @@ export type CreateCompanyMutation = {
4532
4540
  callCampaignId?: string | null;
4533
4541
  combinedCampaignId?: string | null;
4534
4542
  stepType?: string | null;
4543
+ stepOrder?: number | null;
4535
4544
  noteType?: string | null;
4536
4545
  noteId?: string | null;
4537
4546
  } | null;
@@ -4760,7 +4769,7 @@ export type CreateCompanyMutation = {
4760
4769
  productsOfInterest?: any | null;
4761
4770
  businessOpportunities?: any | null;
4762
4771
  currentSupplier?: string | null;
4763
- campaignId?: number | null;
4772
+ campaignId?: string | null;
4764
4773
  campaignName?: string | null;
4765
4774
  segmentId?: number | null;
4766
4775
  segmentName?: string | null;
@@ -4879,7 +4888,7 @@ export type CreateCompanyMutation = {
4879
4888
  productsOfInterest?: any | null;
4880
4889
  businessOpportunities?: any | null;
4881
4890
  currentSupplier?: string | null;
4882
- campaignId?: number | null;
4891
+ campaignId?: string | null;
4883
4892
  campaignName?: string | null;
4884
4893
  segmentId?: number | null;
4885
4894
  segmentName?: string | null;
@@ -5035,7 +5044,7 @@ export type CreateCompanyMutation = {
5035
5044
  productsOfInterest?: any | null;
5036
5045
  businessOpportunities?: any | null;
5037
5046
  currentSupplier?: string | null;
5038
- campaignId?: number | null;
5047
+ campaignId?: string | null;
5039
5048
  campaignName?: string | null;
5040
5049
  segmentId?: number | null;
5041
5050
  segmentName?: string | null;
@@ -5277,7 +5286,7 @@ export type CreateCompanyNoteMutation = {
5277
5286
  productsOfInterest?: any | null;
5278
5287
  businessOpportunities?: any | null;
5279
5288
  currentSupplier?: string | null;
5280
- campaignId?: number | null;
5289
+ campaignId?: string | null;
5281
5290
  campaignName?: string | null;
5282
5291
  segmentId?: number | null;
5283
5292
  segmentName?: string | null;
@@ -5412,7 +5421,7 @@ export type CreateCompanyNoteMutation = {
5412
5421
  productsOfInterest?: any | null;
5413
5422
  businessOpportunities?: any | null;
5414
5423
  currentSupplier?: string | null;
5415
- campaignId?: number | null;
5424
+ campaignId?: string | null;
5416
5425
  campaignName?: string | null;
5417
5426
  segmentId?: number | null;
5418
5427
  segmentName?: string | null;
@@ -5519,6 +5528,7 @@ export type CreateContactMutation = {
5519
5528
  callCampaignId?: string | null;
5520
5529
  combinedCampaignId?: string | null;
5521
5530
  stepType?: string | null;
5531
+ stepOrder?: number | null;
5522
5532
  noteType?: string | null;
5523
5533
  noteId?: string | null;
5524
5534
  } | null;
@@ -5741,7 +5751,7 @@ export type CreateTaskMutation = {
5741
5751
  productsOfInterest?: any | null;
5742
5752
  businessOpportunities?: any | null;
5743
5753
  currentSupplier?: string | null;
5744
- campaignId?: number | null;
5754
+ campaignId?: string | null;
5745
5755
  campaignName?: string | null;
5746
5756
  segmentId?: number | null;
5747
5757
  segmentName?: string | null;
@@ -6197,6 +6207,7 @@ export type PauseCombinedCampaignMutation = {
6197
6207
  delay?: number | null;
6198
6208
  delayUnit?: string | null;
6199
6209
  condition?: string | null;
6210
+ useBusinessDays?: boolean | null;
6200
6211
  settings?: any | null;
6201
6212
  createdAt?: any | null;
6202
6213
  updatedAt?: any | null;
@@ -6402,6 +6413,7 @@ export type RemoveContactsFromCombinedCampaignMutation = {
6402
6413
  delay?: number | null;
6403
6414
  delayUnit?: string | null;
6404
6415
  condition?: string | null;
6416
+ useBusinessDays?: boolean | null;
6405
6417
  settings?: any | null;
6406
6418
  createdAt?: any | null;
6407
6419
  updatedAt?: any | null;
@@ -6656,6 +6668,7 @@ export type ResumeCombinedCampaignMutation = {
6656
6668
  delay?: number | null;
6657
6669
  delayUnit?: string | null;
6658
6670
  condition?: string | null;
6671
+ useBusinessDays?: boolean | null;
6659
6672
  settings?: any | null;
6660
6673
  createdAt?: any | null;
6661
6674
  updatedAt?: any | null;
@@ -6827,6 +6840,7 @@ export type ScheduleCombinedCampaignMutation = {
6827
6840
  delay?: number | null;
6828
6841
  delayUnit?: string | null;
6829
6842
  condition?: string | null;
6843
+ useBusinessDays?: boolean | null;
6830
6844
  settings?: any | null;
6831
6845
  createdAt?: any | null;
6832
6846
  updatedAt?: any | null;
@@ -7007,6 +7021,7 @@ export type SendEmailToContactMutation = {
7007
7021
  callCampaignId?: string | null;
7008
7022
  combinedCampaignId?: string | null;
7009
7023
  stepType?: string | null;
7024
+ stepOrder?: number | null;
7010
7025
  noteType?: string | null;
7011
7026
  noteId?: string | null;
7012
7027
  } | null;
@@ -7129,6 +7144,7 @@ export type SendManualEmailMutation = {
7129
7144
  delay?: number | null;
7130
7145
  delayUnit?: string | null;
7131
7146
  condition?: string | null;
7147
+ useBusinessDays?: boolean | null;
7132
7148
  settings?: any | null;
7133
7149
  createdAt?: any | null;
7134
7150
  updatedAt?: any | null;
@@ -7176,6 +7192,7 @@ export type SendManualEmailMutation = {
7176
7192
  delay?: number | null;
7177
7193
  delayUnit?: string | null;
7178
7194
  condition?: string | null;
7195
+ useBusinessDays?: boolean | null;
7179
7196
  settings?: any | null;
7180
7197
  createdAt?: any | null;
7181
7198
  updatedAt?: any | null;
@@ -7278,7 +7295,7 @@ export type SendManualEmailMutation = {
7278
7295
  productsOfInterest?: any | null;
7279
7296
  businessOpportunities?: any | null;
7280
7297
  currentSupplier?: string | null;
7281
- campaignId?: number | null;
7298
+ campaignId?: string | null;
7282
7299
  campaignName?: string | null;
7283
7300
  segmentId?: number | null;
7284
7301
  segmentName?: string | null;
@@ -7460,6 +7477,7 @@ export type SendManualEmailMutation = {
7460
7477
  callCampaignId?: string | null;
7461
7478
  combinedCampaignId?: string | null;
7462
7479
  stepType?: string | null;
7480
+ stepOrder?: number | null;
7463
7481
  noteType?: string | null;
7464
7482
  noteId?: string | null;
7465
7483
  } | null;
@@ -7642,6 +7660,7 @@ export type StartCombinedCampaignMutation = {
7642
7660
  delay?: number | null;
7643
7661
  delayUnit?: string | null;
7644
7662
  condition?: string | null;
7663
+ useBusinessDays?: boolean | null;
7645
7664
  settings?: any | null;
7646
7665
  createdAt?: any | null;
7647
7666
  updatedAt?: any | null;
@@ -7803,7 +7822,7 @@ export type UpdateCallCampaignLogMutation = {
7803
7822
  productsOfInterest?: any | null;
7804
7823
  businessOpportunities?: any | null;
7805
7824
  currentSupplier?: string | null;
7806
- campaignId?: number | null;
7825
+ campaignId?: string | null;
7807
7826
  campaignName?: string | null;
7808
7827
  segmentId?: number | null;
7809
7828
  segmentName?: string | null;
@@ -8047,6 +8066,7 @@ export type UpdateCombinedCampaignMutation = {
8047
8066
  delay?: number | null;
8048
8067
  delayUnit?: string | null;
8049
8068
  condition?: string | null;
8069
+ useBusinessDays?: boolean | null;
8050
8070
  settings?: any | null;
8051
8071
  createdAt?: any | null;
8052
8072
  updatedAt?: any | null;
@@ -8157,6 +8177,7 @@ export type UpdateCombinedCampaignLogMutation = {
8157
8177
  delay?: number | null;
8158
8178
  delayUnit?: string | null;
8159
8179
  condition?: string | null;
8180
+ useBusinessDays?: boolean | null;
8160
8181
  settings?: any | null;
8161
8182
  createdAt?: any | null;
8162
8183
  updatedAt?: any | null;
@@ -8204,6 +8225,7 @@ export type UpdateCombinedCampaignLogMutation = {
8204
8225
  delay?: number | null;
8205
8226
  delayUnit?: string | null;
8206
8227
  condition?: string | null;
8228
+ useBusinessDays?: boolean | null;
8207
8229
  settings?: any | null;
8208
8230
  createdAt?: any | null;
8209
8231
  updatedAt?: any | null;
@@ -8306,7 +8328,7 @@ export type UpdateCombinedCampaignLogMutation = {
8306
8328
  productsOfInterest?: any | null;
8307
8329
  businessOpportunities?: any | null;
8308
8330
  currentSupplier?: string | null;
8309
- campaignId?: number | null;
8331
+ campaignId?: string | null;
8310
8332
  campaignName?: string | null;
8311
8333
  segmentId?: number | null;
8312
8334
  segmentName?: string | null;
@@ -8505,6 +8527,7 @@ export type UpdateCompanyMutation = {
8505
8527
  callCampaignId?: string | null;
8506
8528
  combinedCampaignId?: string | null;
8507
8529
  stepType?: string | null;
8530
+ stepOrder?: number | null;
8508
8531
  noteType?: string | null;
8509
8532
  noteId?: string | null;
8510
8533
  } | null;
@@ -8733,7 +8756,7 @@ export type UpdateCompanyMutation = {
8733
8756
  productsOfInterest?: any | null;
8734
8757
  businessOpportunities?: any | null;
8735
8758
  currentSupplier?: string | null;
8736
- campaignId?: number | null;
8759
+ campaignId?: string | null;
8737
8760
  campaignName?: string | null;
8738
8761
  segmentId?: number | null;
8739
8762
  segmentName?: string | null;
@@ -8852,7 +8875,7 @@ export type UpdateCompanyMutation = {
8852
8875
  productsOfInterest?: any | null;
8853
8876
  businessOpportunities?: any | null;
8854
8877
  currentSupplier?: string | null;
8855
- campaignId?: number | null;
8878
+ campaignId?: string | null;
8856
8879
  campaignName?: string | null;
8857
8880
  segmentId?: number | null;
8858
8881
  segmentName?: string | null;
@@ -9008,7 +9031,7 @@ export type UpdateCompanyMutation = {
9008
9031
  productsOfInterest?: any | null;
9009
9032
  businessOpportunities?: any | null;
9010
9033
  currentSupplier?: string | null;
9011
- campaignId?: number | null;
9034
+ campaignId?: string | null;
9012
9035
  campaignName?: string | null;
9013
9036
  segmentId?: number | null;
9014
9037
  segmentName?: string | null;
@@ -9250,7 +9273,7 @@ export type UpdateCompanyNoteMutation = {
9250
9273
  productsOfInterest?: any | null;
9251
9274
  businessOpportunities?: any | null;
9252
9275
  currentSupplier?: string | null;
9253
- campaignId?: number | null;
9276
+ campaignId?: string | null;
9254
9277
  campaignName?: string | null;
9255
9278
  segmentId?: number | null;
9256
9279
  segmentName?: string | null;
@@ -9385,7 +9408,7 @@ export type UpdateCompanyNoteMutation = {
9385
9408
  productsOfInterest?: any | null;
9386
9409
  businessOpportunities?: any | null;
9387
9410
  currentSupplier?: string | null;
9388
- campaignId?: number | null;
9411
+ campaignId?: string | null;
9389
9412
  campaignName?: string | null;
9390
9413
  segmentId?: number | null;
9391
9414
  segmentName?: string | null;
@@ -9492,6 +9515,7 @@ export type UpdateContactMutation = {
9492
9515
  callCampaignId?: string | null;
9493
9516
  combinedCampaignId?: string | null;
9494
9517
  stepType?: string | null;
9518
+ stepOrder?: number | null;
9495
9519
  noteType?: string | null;
9496
9520
  noteId?: string | null;
9497
9521
  } | null;
@@ -9691,7 +9715,7 @@ export type UpdateTaskMutation = {
9691
9715
  productsOfInterest?: any | null;
9692
9716
  businessOpportunities?: any | null;
9693
9717
  currentSupplier?: string | null;
9694
- campaignId?: number | null;
9718
+ campaignId?: string | null;
9695
9719
  campaignName?: string | null;
9696
9720
  segmentId?: number | null;
9697
9721
  segmentName?: string | null;
@@ -9962,7 +9986,7 @@ export type CallCampaignLogQuery = {
9962
9986
  productsOfInterest?: any | null;
9963
9987
  businessOpportunities?: any | null;
9964
9988
  currentSupplier?: string | null;
9965
- campaignId?: number | null;
9989
+ campaignId?: string | null;
9966
9990
  campaignName?: string | null;
9967
9991
  segmentId?: number | null;
9968
9992
  segmentName?: string | null;
@@ -10118,7 +10142,7 @@ export type CallCampaignLogsQuery = {
10118
10142
  productsOfInterest?: any | null;
10119
10143
  businessOpportunities?: any | null;
10120
10144
  currentSupplier?: string | null;
10121
- campaignId?: number | null;
10145
+ campaignId?: string | null;
10122
10146
  campaignName?: string | null;
10123
10147
  segmentId?: number | null;
10124
10148
  segmentName?: string | null;
@@ -10290,8 +10314,9 @@ export type CallCampaignReportQuery = {
10290
10314
  phone?: string | null;
10291
10315
  outcome?: string | null;
10292
10316
  timestamp?: any | null;
10293
- campaignId?: number | null;
10317
+ campaignId?: string | null;
10294
10318
  campaignName?: string | null;
10319
+ source?: string | null;
10295
10320
  notes?: string | null;
10296
10321
  currentSupplier?: string | null;
10297
10322
  productsOfInterest?: any | null;
@@ -10394,7 +10419,7 @@ export type CallCampaignReportQuery = {
10394
10419
  productsOfInterest?: any | null;
10395
10420
  businessOpportunities?: any | null;
10396
10421
  currentSupplier?: string | null;
10397
- campaignId?: number | null;
10422
+ campaignId?: string | null;
10398
10423
  campaignName?: string | null;
10399
10424
  segmentId?: number | null;
10400
10425
  segmentName?: string | null;
@@ -10699,6 +10724,7 @@ export type CampaignContactsQuery = {
10699
10724
  callCampaignId?: string | null;
10700
10725
  combinedCampaignId?: string | null;
10701
10726
  stepType?: string | null;
10727
+ stepOrder?: number | null;
10702
10728
  noteType?: string | null;
10703
10729
  noteId?: string | null;
10704
10730
  } | null;
@@ -10777,6 +10803,7 @@ export type CampaignLogsQuery = {
10777
10803
  callCampaignId?: string | null;
10778
10804
  combinedCampaignId?: string | null;
10779
10805
  stepType?: string | null;
10806
+ stepOrder?: number | null;
10780
10807
  noteType?: string | null;
10781
10808
  noteId?: string | null;
10782
10809
  } | null;
@@ -10961,6 +10988,7 @@ export type CampaignLogsQuery = {
10961
10988
  callCampaignId?: string | null;
10962
10989
  combinedCampaignId?: string | null;
10963
10990
  stepType?: string | null;
10991
+ stepOrder?: number | null;
10964
10992
  noteType?: string | null;
10965
10993
  noteId?: string | null;
10966
10994
  } | null;
@@ -11175,6 +11203,7 @@ export type CombinedCampaignQuery = {
11175
11203
  delay?: number | null;
11176
11204
  delayUnit?: string | null;
11177
11205
  condition?: string | null;
11206
+ useBusinessDays?: boolean | null;
11178
11207
  settings?: any | null;
11179
11208
  createdAt?: any | null;
11180
11209
  updatedAt?: any | null;
@@ -11256,6 +11285,7 @@ export type CombinedCampaignContactsQuery = {
11256
11285
  callCampaignId?: string | null;
11257
11286
  combinedCampaignId?: string | null;
11258
11287
  stepType?: string | null;
11288
+ stepOrder?: number | null;
11259
11289
  noteType?: string | null;
11260
11290
  noteId?: string | null;
11261
11291
  } | null;
@@ -11360,6 +11390,7 @@ export type CombinedCampaignLogsQuery = {
11360
11390
  delay?: number | null;
11361
11391
  delayUnit?: string | null;
11362
11392
  condition?: string | null;
11393
+ useBusinessDays?: boolean | null;
11363
11394
  settings?: any | null;
11364
11395
  createdAt?: any | null;
11365
11396
  updatedAt?: any | null;
@@ -11407,6 +11438,7 @@ export type CombinedCampaignLogsQuery = {
11407
11438
  delay?: number | null;
11408
11439
  delayUnit?: string | null;
11409
11440
  condition?: string | null;
11441
+ useBusinessDays?: boolean | null;
11410
11442
  settings?: any | null;
11411
11443
  createdAt?: any | null;
11412
11444
  updatedAt?: any | null;
@@ -11509,7 +11541,7 @@ export type CombinedCampaignLogsQuery = {
11509
11541
  productsOfInterest?: any | null;
11510
11542
  businessOpportunities?: any | null;
11511
11543
  currentSupplier?: string | null;
11512
- campaignId?: number | null;
11544
+ campaignId?: string | null;
11513
11545
  campaignName?: string | null;
11514
11546
  segmentId?: number | null;
11515
11547
  segmentName?: string | null;
@@ -11601,6 +11633,7 @@ export type CombinedCampaignStepsQuery = {
11601
11633
  delay?: number | null;
11602
11634
  delayUnit?: string | null;
11603
11635
  condition?: string | null;
11636
+ useBusinessDays?: boolean | null;
11604
11637
  settings?: any | null;
11605
11638
  createdAt?: any | null;
11606
11639
  updatedAt?: any | null;
@@ -11650,6 +11683,7 @@ export type CombinedCampaignsQuery = {
11650
11683
  delay?: number | null;
11651
11684
  delayUnit?: string | null;
11652
11685
  condition?: string | null;
11686
+ useBusinessDays?: boolean | null;
11653
11687
  settings?: any | null;
11654
11688
  createdAt?: any | null;
11655
11689
  updatedAt?: any | null;
@@ -11835,6 +11869,7 @@ export type CompaniesQuery = {
11835
11869
  callCampaignId?: string | null;
11836
11870
  combinedCampaignId?: string | null;
11837
11871
  stepType?: string | null;
11872
+ stepOrder?: number | null;
11838
11873
  noteType?: string | null;
11839
11874
  noteId?: string | null;
11840
11875
  } | null;
@@ -12063,7 +12098,7 @@ export type CompaniesQuery = {
12063
12098
  productsOfInterest?: any | null;
12064
12099
  businessOpportunities?: any | null;
12065
12100
  currentSupplier?: string | null;
12066
- campaignId?: number | null;
12101
+ campaignId?: string | null;
12067
12102
  campaignName?: string | null;
12068
12103
  segmentId?: number | null;
12069
12104
  segmentName?: string | null;
@@ -12228,7 +12263,7 @@ export type CompaniesQuery = {
12228
12263
  productsOfInterest?: any | null;
12229
12264
  businessOpportunities?: any | null;
12230
12265
  currentSupplier?: string | null;
12231
- campaignId?: number | null;
12266
+ campaignId?: string | null;
12232
12267
  campaignName?: string | null;
12233
12268
  segmentId?: number | null;
12234
12269
  segmentName?: string | null;
@@ -12480,6 +12515,7 @@ export type CompanyQuery = {
12480
12515
  callCampaignId?: string | null;
12481
12516
  combinedCampaignId?: string | null;
12482
12517
  stepType?: string | null;
12518
+ stepOrder?: number | null;
12483
12519
  noteType?: string | null;
12484
12520
  noteId?: string | null;
12485
12521
  } | null;
@@ -12708,7 +12744,7 @@ export type CompanyQuery = {
12708
12744
  productsOfInterest?: any | null;
12709
12745
  businessOpportunities?: any | null;
12710
12746
  currentSupplier?: string | null;
12711
- campaignId?: number | null;
12747
+ campaignId?: string | null;
12712
12748
  campaignName?: string | null;
12713
12749
  segmentId?: number | null;
12714
12750
  segmentName?: string | null;
@@ -12827,7 +12863,7 @@ export type CompanyQuery = {
12827
12863
  productsOfInterest?: any | null;
12828
12864
  businessOpportunities?: any | null;
12829
12865
  currentSupplier?: string | null;
12830
- campaignId?: number | null;
12866
+ campaignId?: string | null;
12831
12867
  campaignName?: string | null;
12832
12868
  segmentId?: number | null;
12833
12869
  segmentName?: string | null;
@@ -12983,7 +13019,7 @@ export type CompanyQuery = {
12983
13019
  productsOfInterest?: any | null;
12984
13020
  businessOpportunities?: any | null;
12985
13021
  currentSupplier?: string | null;
12986
- campaignId?: number | null;
13022
+ campaignId?: string | null;
12987
13023
  campaignName?: string | null;
12988
13024
  segmentId?: number | null;
12989
13025
  segmentName?: string | null;
@@ -13222,7 +13258,7 @@ export type CompanyNoteQuery = {
13222
13258
  productsOfInterest?: any | null;
13223
13259
  businessOpportunities?: any | null;
13224
13260
  currentSupplier?: string | null;
13225
- campaignId?: number | null;
13261
+ campaignId?: string | null;
13226
13262
  campaignName?: string | null;
13227
13263
  segmentId?: number | null;
13228
13264
  segmentName?: string | null;
@@ -13357,7 +13393,7 @@ export type CompanyNoteQuery = {
13357
13393
  productsOfInterest?: any | null;
13358
13394
  businessOpportunities?: any | null;
13359
13395
  currentSupplier?: string | null;
13360
- campaignId?: number | null;
13396
+ campaignId?: string | null;
13361
13397
  campaignName?: string | null;
13362
13398
  segmentId?: number | null;
13363
13399
  segmentName?: string | null;
@@ -13550,7 +13586,7 @@ export type CompanyNotesQuery = {
13550
13586
  productsOfInterest?: any | null;
13551
13587
  businessOpportunities?: any | null;
13552
13588
  currentSupplier?: string | null;
13553
- campaignId?: number | null;
13589
+ campaignId?: string | null;
13554
13590
  campaignName?: string | null;
13555
13591
  segmentId?: number | null;
13556
13592
  segmentName?: string | null;
@@ -13669,7 +13705,7 @@ export type CompanyNotesQuery = {
13669
13705
  productsOfInterest?: any | null;
13670
13706
  businessOpportunities?: any | null;
13671
13707
  currentSupplier?: string | null;
13672
- campaignId?: number | null;
13708
+ campaignId?: string | null;
13673
13709
  campaignName?: string | null;
13674
13710
  segmentId?: number | null;
13675
13711
  segmentName?: string | null;
@@ -13783,6 +13819,7 @@ export type ContactQuery = {
13783
13819
  callCampaignId?: string | null;
13784
13820
  combinedCampaignId?: string | null;
13785
13821
  stepType?: string | null;
13822
+ stepOrder?: number | null;
13786
13823
  noteType?: string | null;
13787
13824
  noteId?: string | null;
13788
13825
  } | null;
@@ -13867,6 +13904,7 @@ export type ContactsQuery = {
13867
13904
  callCampaignId?: string | null;
13868
13905
  combinedCampaignId?: string | null;
13869
13906
  stepType?: string | null;
13907
+ stepOrder?: number | null;
13870
13908
  noteType?: string | null;
13871
13909
  noteId?: string | null;
13872
13910
  } | null;
@@ -13954,6 +13992,7 @@ export type ContactsInSegmentQuery = {
13954
13992
  callCampaignId?: string | null;
13955
13993
  combinedCampaignId?: string | null;
13956
13994
  stepType?: string | null;
13995
+ stepOrder?: number | null;
13957
13996
  noteType?: string | null;
13958
13997
  noteId?: string | null;
13959
13998
  } | null;
@@ -14382,6 +14421,7 @@ export type RecentHistoryQuery = {
14382
14421
  callCampaignId?: string | null;
14383
14422
  combinedCampaignId?: string | null;
14384
14423
  stepType?: string | null;
14424
+ stepOrder?: number | null;
14385
14425
  noteType?: string | null;
14386
14426
  noteId?: string | null;
14387
14427
  } | null;
@@ -14547,6 +14587,7 @@ export type RecentHistoryQuery = {
14547
14587
  callCampaignId?: string | null;
14548
14588
  combinedCampaignId?: string | null;
14549
14589
  stepType?: string | null;
14590
+ stepOrder?: number | null;
14550
14591
  noteType?: string | null;
14551
14592
  noteId?: string | null;
14552
14593
  } | null;
@@ -14759,7 +14800,7 @@ export type RecentHistoryQuery = {
14759
14800
  productsOfInterest?: any | null;
14760
14801
  businessOpportunities?: any | null;
14761
14802
  currentSupplier?: string | null;
14762
- campaignId?: number | null;
14803
+ campaignId?: string | null;
14763
14804
  campaignName?: string | null;
14764
14805
  segmentId?: number | null;
14765
14806
  segmentName?: string | null;
@@ -14905,7 +14946,7 @@ export type RecentHistoryQuery = {
14905
14946
  productsOfInterest?: any | null;
14906
14947
  businessOpportunities?: any | null;
14907
14948
  currentSupplier?: string | null;
14908
- campaignId?: number | null;
14949
+ campaignId?: string | null;
14909
14950
  campaignName?: string | null;
14910
14951
  segmentId?: number | null;
14911
14952
  segmentName?: string | null;
@@ -15094,6 +15135,7 @@ export type SearchContactsQuery = {
15094
15135
  callCampaignId?: string | null;
15095
15136
  combinedCampaignId?: string | null;
15096
15137
  stepType?: string | null;
15138
+ stepOrder?: number | null;
15097
15139
  noteType?: string | null;
15098
15140
  noteId?: string | null;
15099
15141
  } | null;
@@ -15304,7 +15346,7 @@ export type TaskQuery = {
15304
15346
  productsOfInterest?: any | null;
15305
15347
  businessOpportunities?: any | null;
15306
15348
  currentSupplier?: string | null;
15307
- campaignId?: number | null;
15349
+ campaignId?: string | null;
15308
15350
  campaignName?: string | null;
15309
15351
  segmentId?: number | null;
15310
15352
  segmentName?: string | null;
@@ -15459,7 +15501,7 @@ export type TasksQuery = {
15459
15501
  productsOfInterest?: any | null;
15460
15502
  businessOpportunities?: any | null;
15461
15503
  currentSupplier?: string | null;
15462
- campaignId?: number | null;
15504
+ campaignId?: string | null;
15463
15505
  campaignName?: string | null;
15464
15506
  segmentId?: number | null;
15465
15507
  segmentName?: string | null;
@@ -945,6 +945,7 @@ exports.CancelCombinedCampaignDocument = (0, client_1.gql) `
945
945
  delay
946
946
  delayUnit
947
947
  condition
948
+ useBusinessDays
948
949
  settings
949
950
  createdAt
950
951
  updatedAt
@@ -1535,6 +1536,7 @@ exports.CreateCombinedCampaignDocument = (0, client_1.gql) `
1535
1536
  delay
1536
1537
  delayUnit
1537
1538
  condition
1539
+ useBusinessDays
1538
1540
  settings
1539
1541
  createdAt
1540
1542
  updatedAt
@@ -1706,6 +1708,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
1706
1708
  callCampaignId
1707
1709
  combinedCampaignId
1708
1710
  stepType
1711
+ stepOrder
1709
1712
  noteType
1710
1713
  noteId
1711
1714
  }
@@ -2662,6 +2665,7 @@ exports.CreateContactDocument = (0, client_1.gql) `
2662
2665
  callCampaignId
2663
2666
  combinedCampaignId
2664
2667
  stepType
2668
+ stepOrder
2665
2669
  noteType
2666
2670
  noteId
2667
2671
  }
@@ -3771,6 +3775,7 @@ exports.PauseCombinedCampaignDocument = (0, client_1.gql) `
3771
3775
  delay
3772
3776
  delayUnit
3773
3777
  condition
3778
+ useBusinessDays
3774
3779
  settings
3775
3780
  createdAt
3776
3781
  updatedAt
@@ -4068,6 +4073,7 @@ exports.RemoveContactsFromCombinedCampaignDocument = (0, client_1.gql) `
4068
4073
  delay
4069
4074
  delayUnit
4070
4075
  condition
4076
+ useBusinessDays
4071
4077
  settings
4072
4078
  createdAt
4073
4079
  updatedAt
@@ -4402,6 +4408,7 @@ exports.ResumeCombinedCampaignDocument = (0, client_1.gql) `
4402
4408
  delay
4403
4409
  delayUnit
4404
4410
  condition
4411
+ useBusinessDays
4405
4412
  settings
4406
4413
  createdAt
4407
4414
  updatedAt
@@ -4618,6 +4625,7 @@ exports.ScheduleCombinedCampaignDocument = (0, client_1.gql) `
4618
4625
  delay
4619
4626
  delayUnit
4620
4627
  condition
4628
+ useBusinessDays
4621
4629
  settings
4622
4630
  createdAt
4623
4631
  updatedAt
@@ -4797,6 +4805,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
4797
4805
  callCampaignId
4798
4806
  combinedCampaignId
4799
4807
  stepType
4808
+ stepOrder
4800
4809
  noteType
4801
4810
  noteId
4802
4811
  }
@@ -4919,6 +4928,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
4919
4928
  delay
4920
4929
  delayUnit
4921
4930
  condition
4931
+ useBusinessDays
4922
4932
  settings
4923
4933
  createdAt
4924
4934
  updatedAt
@@ -4969,6 +4979,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
4969
4979
  delay
4970
4980
  delayUnit
4971
4981
  condition
4982
+ useBusinessDays
4972
4983
  settings
4973
4984
  createdAt
4974
4985
  updatedAt
@@ -5243,6 +5254,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
5243
5254
  callCampaignId
5244
5255
  combinedCampaignId
5245
5256
  stepType
5257
+ stepOrder
5246
5258
  noteType
5247
5259
  noteId
5248
5260
  }
@@ -5511,6 +5523,7 @@ exports.StartCombinedCampaignDocument = (0, client_1.gql) `
5511
5523
  delay
5512
5524
  delayUnit
5513
5525
  condition
5526
+ useBusinessDays
5514
5527
  settings
5515
5528
  createdAt
5516
5529
  updatedAt
@@ -6019,6 +6032,7 @@ exports.UpdateCombinedCampaignDocument = (0, client_1.gql) `
6019
6032
  delay
6020
6033
  delayUnit
6021
6034
  condition
6035
+ useBusinessDays
6022
6036
  settings
6023
6037
  createdAt
6024
6038
  updatedAt
@@ -6114,6 +6128,7 @@ exports.UpdateCombinedCampaignLogDocument = (0, client_1.gql) `
6114
6128
  delay
6115
6129
  delayUnit
6116
6130
  condition
6131
+ useBusinessDays
6117
6132
  settings
6118
6133
  createdAt
6119
6134
  updatedAt
@@ -6164,6 +6179,7 @@ exports.UpdateCombinedCampaignLogDocument = (0, client_1.gql) `
6164
6179
  delay
6165
6180
  delayUnit
6166
6181
  condition
6182
+ useBusinessDays
6167
6183
  settings
6168
6184
  createdAt
6169
6185
  updatedAt
@@ -6506,6 +6522,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
6506
6522
  callCampaignId
6507
6523
  combinedCampaignId
6508
6524
  stepType
6525
+ stepOrder
6509
6526
  noteType
6510
6527
  noteId
6511
6528
  }
@@ -7462,6 +7479,7 @@ exports.UpdateContactDocument = (0, client_1.gql) `
7462
7479
  callCampaignId
7463
7480
  combinedCampaignId
7464
7481
  stepType
7482
+ stepOrder
7465
7483
  noteType
7466
7484
  noteId
7467
7485
  }
@@ -8503,6 +8521,7 @@ exports.CallCampaignReportDocument = (0, client_1.gql) `
8503
8521
  timestamp
8504
8522
  campaignId
8505
8523
  campaignName
8524
+ source
8506
8525
  notes
8507
8526
  currentSupplier
8508
8527
  productsOfInterest
@@ -8980,6 +8999,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
8980
8999
  callCampaignId
8981
9000
  combinedCampaignId
8982
9001
  stepType
9002
+ stepOrder
8983
9003
  noteType
8984
9004
  noteId
8985
9005
  }
@@ -9074,6 +9094,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
9074
9094
  callCampaignId
9075
9095
  combinedCampaignId
9076
9096
  stepType
9097
+ stepOrder
9077
9098
  noteType
9078
9099
  noteId
9079
9100
  }
@@ -9228,6 +9249,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
9228
9249
  callCampaignId
9229
9250
  combinedCampaignId
9230
9251
  stepType
9252
+ stepOrder
9231
9253
  noteType
9232
9254
  noteId
9233
9255
  }
@@ -9517,6 +9539,7 @@ exports.CombinedCampaignDocument = (0, client_1.gql) `
9517
9539
  delay
9518
9540
  delayUnit
9519
9541
  condition
9542
+ useBusinessDays
9520
9543
  settings
9521
9544
  createdAt
9522
9545
  updatedAt
@@ -9624,6 +9647,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
9624
9647
  callCampaignId
9625
9648
  combinedCampaignId
9626
9649
  stepType
9650
+ stepOrder
9627
9651
  noteType
9628
9652
  noteId
9629
9653
  }
@@ -9723,6 +9747,7 @@ exports.CombinedCampaignLogsDocument = (0, client_1.gql) `
9723
9747
  delay
9724
9748
  delayUnit
9725
9749
  condition
9750
+ useBusinessDays
9726
9751
  settings
9727
9752
  createdAt
9728
9753
  updatedAt
@@ -9773,6 +9798,7 @@ exports.CombinedCampaignLogsDocument = (0, client_1.gql) `
9773
9798
  delay
9774
9799
  delayUnit
9775
9800
  condition
9801
+ useBusinessDays
9776
9802
  settings
9777
9803
  createdAt
9778
9804
  updatedAt
@@ -10011,6 +10037,7 @@ exports.CombinedCampaignStepsDocument = (0, client_1.gql) `
10011
10037
  delay
10012
10038
  delayUnit
10013
10039
  condition
10040
+ useBusinessDays
10014
10041
  settings
10015
10042
  createdAt
10016
10043
  updatedAt
@@ -10075,6 +10102,7 @@ exports.CombinedCampaignsDocument = (0, client_1.gql) `
10075
10102
  delay
10076
10103
  delayUnit
10077
10104
  condition
10105
+ useBusinessDays
10078
10106
  settings
10079
10107
  createdAt
10080
10108
  updatedAt
@@ -10266,6 +10294,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
10266
10294
  callCampaignId
10267
10295
  combinedCampaignId
10268
10296
  stepType
10297
+ stepOrder
10269
10298
  noteType
10270
10299
  noteId
10271
10300
  }
@@ -10886,6 +10915,7 @@ exports.CompanyDocument = (0, client_1.gql) `
10886
10915
  callCampaignId
10887
10916
  combinedCampaignId
10888
10917
  stepType
10918
+ stepOrder
10889
10919
  noteType
10890
10920
  noteId
10891
10921
  }
@@ -12178,6 +12208,7 @@ exports.ContactDocument = (0, client_1.gql) `
12178
12208
  callCampaignId
12179
12209
  combinedCampaignId
12180
12210
  stepType
12211
+ stepOrder
12181
12212
  noteType
12182
12213
  noteId
12183
12214
  }
@@ -12280,6 +12311,7 @@ exports.ContactsDocument = (0, client_1.gql) `
12280
12311
  callCampaignId
12281
12312
  combinedCampaignId
12282
12313
  stepType
12314
+ stepOrder
12283
12315
  noteType
12284
12316
  noteId
12285
12317
  }
@@ -12382,6 +12414,7 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
12382
12414
  callCampaignId
12383
12415
  combinedCampaignId
12384
12416
  stepType
12417
+ stepOrder
12385
12418
  noteType
12386
12419
  noteId
12387
12420
  }
@@ -13190,6 +13223,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
13190
13223
  callCampaignId
13191
13224
  combinedCampaignId
13192
13225
  stepType
13226
+ stepOrder
13193
13227
  noteType
13194
13228
  noteId
13195
13229
  }
@@ -13333,6 +13367,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
13333
13367
  callCampaignId
13334
13368
  combinedCampaignId
13335
13369
  stepType
13370
+ stepOrder
13336
13371
  noteType
13337
13372
  noteId
13338
13373
  }
@@ -13907,6 +13942,7 @@ exports.SearchContactsDocument = (0, client_1.gql) `
13907
13942
  callCampaignId
13908
13943
  combinedCampaignId
13909
13944
  stepType
13945
+ stepOrder
13910
13946
  noteType
13911
13947
  noteId
13912
13948
  }
package/dist/mutations.js CHANGED
@@ -33,6 +33,7 @@ mutation CreateCombinedCampaign($input: CombinedCampaignInput!, $steps: [Combine
33
33
  delay
34
34
  delayUnit
35
35
  condition
36
+ useBusinessDays
36
37
  settings
37
38
  createdAt
38
39
  updatedAt
@@ -102,6 +103,7 @@ mutation UpdateCombinedCampaign($input: UpdateCombinedCampaignInput!, $steps: [C
102
103
  delay
103
104
  delayUnit
104
105
  condition
106
+ useBusinessDays
105
107
  settings
106
108
  createdAt
107
109
  updatedAt
@@ -178,6 +180,7 @@ mutation StartCombinedCampaign($id: ID!) {
178
180
  delay
179
181
  delayUnit
180
182
  condition
183
+ useBusinessDays
181
184
  settings
182
185
  createdAt
183
186
  updatedAt
@@ -247,6 +250,7 @@ mutation ScheduleCombinedCampaign($id: ID!, $scheduledFor: DateTime!) {
247
250
  delay
248
251
  delayUnit
249
252
  condition
253
+ useBusinessDays
250
254
  settings
251
255
  createdAt
252
256
  updatedAt
@@ -316,6 +320,7 @@ mutation PauseCombinedCampaign($id: ID!) {
316
320
  delay
317
321
  delayUnit
318
322
  condition
323
+ useBusinessDays
319
324
  settings
320
325
  createdAt
321
326
  updatedAt
@@ -385,6 +390,7 @@ mutation ResumeCombinedCampaign($id: ID!) {
385
390
  delay
386
391
  delayUnit
387
392
  condition
393
+ useBusinessDays
388
394
  settings
389
395
  createdAt
390
396
  updatedAt
@@ -454,6 +460,7 @@ mutation CancelCombinedCampaign($id: ID!) {
454
460
  delay
455
461
  delayUnit
456
462
  condition
463
+ useBusinessDays
457
464
  settings
458
465
  createdAt
459
466
  updatedAt
@@ -526,6 +533,7 @@ mutation UpdateCombinedCampaignLog($id: ID!, $input: UpdateCombinedCampaignLogIn
526
533
  delay
527
534
  delayUnit
528
535
  condition
536
+ useBusinessDays
529
537
  settings
530
538
  createdAt
531
539
  updatedAt
@@ -576,6 +584,7 @@ mutation UpdateCombinedCampaignLog($id: ID!, $input: UpdateCombinedCampaignLogIn
576
584
  delay
577
585
  delayUnit
578
586
  condition
587
+ useBusinessDays
579
588
  settings
580
589
  createdAt
581
590
  updatedAt
@@ -789,6 +798,7 @@ mutation SendManualEmail($bcc: [String], $body: String!, $cc: [String], $logId:
789
798
  delay
790
799
  delayUnit
791
800
  condition
801
+ useBusinessDays
792
802
  settings
793
803
  createdAt
794
804
  updatedAt
@@ -839,6 +849,7 @@ mutation SendManualEmail($bcc: [String], $body: String!, $cc: [String], $logId:
839
849
  delay
840
850
  delayUnit
841
851
  condition
852
+ useBusinessDays
842
853
  settings
843
854
  createdAt
844
855
  updatedAt
@@ -1113,6 +1124,7 @@ mutation SendManualEmail($bcc: [String], $body: String!, $cc: [String], $logId:
1113
1124
  callCampaignId
1114
1125
  combinedCampaignId
1115
1126
  stepType
1127
+ stepOrder
1116
1128
  noteType
1117
1129
  noteId
1118
1130
  }
@@ -1201,6 +1213,7 @@ mutation RemoveContactsFromCombinedCampaign($campaignId: ID!, $contactIds: [ID],
1201
1213
  delay
1202
1214
  delayUnit
1203
1215
  condition
1216
+ useBusinessDays
1204
1217
  settings
1205
1218
  createdAt
1206
1219
  updatedAt
@@ -1463,6 +1476,7 @@ mutation CreateContact($input: ContactInput) {
1463
1476
  callCampaignId
1464
1477
  combinedCampaignId
1465
1478
  stepType
1479
+ stepOrder
1466
1480
  noteType
1467
1481
  noteId
1468
1482
  }
@@ -1538,6 +1552,7 @@ mutation UpdateContact($input: ContactInput) {
1538
1552
  callCampaignId
1539
1553
  combinedCampaignId
1540
1554
  stepType
1555
+ stepOrder
1541
1556
  noteType
1542
1557
  noteId
1543
1558
  }
@@ -1692,6 +1707,7 @@ mutation CreateCompany($input: CompanyInput) {
1692
1707
  callCampaignId
1693
1708
  combinedCampaignId
1694
1709
  stepType
1710
+ stepOrder
1695
1711
  noteType
1696
1712
  noteId
1697
1713
  }
@@ -2375,6 +2391,7 @@ mutation UpdateCompany($input: CompanyInput) {
2375
2391
  callCampaignId
2376
2392
  combinedCampaignId
2377
2393
  stepType
2394
+ stepOrder
2378
2395
  noteType
2379
2396
  noteId
2380
2397
  }
@@ -3805,6 +3822,7 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $segmentId: ID, $s
3805
3822
  callCampaignId
3806
3823
  combinedCampaignId
3807
3824
  stepType
3825
+ stepOrder
3808
3826
  noteType
3809
3827
  noteId
3810
3828
  }
package/dist/queries.js CHANGED
@@ -33,6 +33,7 @@ query CombinedCampaigns($pagination: PaginationInput, $status: String, $sortBy:
33
33
  delay
34
34
  delayUnit
35
35
  condition
36
+ useBusinessDays
36
37
  settings
37
38
  createdAt
38
39
  updatedAt
@@ -113,6 +114,7 @@ query CombinedCampaign($id: ID!) {
113
114
  delay
114
115
  delayUnit
115
116
  condition
117
+ useBusinessDays
116
118
  settings
117
119
  createdAt
118
120
  updatedAt
@@ -182,6 +184,7 @@ query CombinedCampaignLogs($campaignId: ID!, $filters: CombinedCampaignFilterInp
182
184
  delay
183
185
  delayUnit
184
186
  condition
187
+ useBusinessDays
185
188
  settings
186
189
  createdAt
187
190
  updatedAt
@@ -232,6 +235,7 @@ query CombinedCampaignLogs($campaignId: ID!, $filters: CombinedCampaignFilterInp
232
235
  delay
233
236
  delayUnit
234
237
  condition
238
+ useBusinessDays
235
239
  settings
236
240
  createdAt
237
241
  updatedAt
@@ -455,6 +459,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
455
459
  callCampaignId
456
460
  combinedCampaignId
457
461
  stepType
462
+ stepOrder
458
463
  noteType
459
464
  noteId
460
465
  }
@@ -498,6 +503,7 @@ query CombinedCampaignSteps($campaignId: ID!) {
498
503
  delay
499
504
  delayUnit
500
505
  condition
506
+ useBusinessDays
501
507
  settings
502
508
  createdAt
503
509
  updatedAt
@@ -570,6 +576,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
570
576
  callCampaignId
571
577
  combinedCampaignId
572
578
  stepType
579
+ stepOrder
573
580
  noteType
574
581
  noteId
575
582
  }
@@ -713,6 +720,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
713
720
  callCampaignId
714
721
  combinedCampaignId
715
722
  stepType
723
+ stepOrder
716
724
  noteType
717
725
  noteId
718
726
  }
@@ -2228,6 +2236,7 @@ query CallCampaignReport($filters: CallReportFilterInput, $pagination: Paginatio
2228
2236
  timestamp
2229
2237
  campaignId
2230
2238
  campaignName
2239
+ source
2231
2240
  notes
2232
2241
  currentSupplier
2233
2242
  productsOfInterest
@@ -3002,6 +3011,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
3002
3011
  callCampaignId
3003
3012
  combinedCampaignId
3004
3013
  stepType
3014
+ stepOrder
3005
3015
  noteType
3006
3016
  noteId
3007
3017
  }
@@ -3156,6 +3166,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
3156
3166
  callCampaignId
3157
3167
  combinedCampaignId
3158
3168
  stepType
3169
+ stepOrder
3159
3170
  noteType
3160
3171
  noteId
3161
3172
  }
@@ -3267,6 +3278,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
3267
3278
  callCampaignId
3268
3279
  combinedCampaignId
3269
3280
  stepType
3281
+ stepOrder
3270
3282
  noteType
3271
3283
  noteId
3272
3284
  }
@@ -3375,6 +3387,7 @@ query ContactsInSegment($segmentId: ID!, $pagination: PaginationInput) {
3375
3387
  callCampaignId
3376
3388
  combinedCampaignId
3377
3389
  stepType
3390
+ stepOrder
3378
3391
  noteType
3379
3392
  noteId
3380
3393
  }
@@ -3531,6 +3544,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
3531
3544
  callCampaignId
3532
3545
  combinedCampaignId
3533
3546
  stepType
3547
+ stepOrder
3534
3548
  noteType
3535
3549
  noteId
3536
3550
  }
@@ -4047,6 +4061,7 @@ query Contacts {
4047
4061
  callCampaignId
4048
4062
  combinedCampaignId
4049
4063
  stepType
4064
+ stepOrder
4050
4065
  noteType
4051
4066
  noteId
4052
4067
  }
@@ -4121,6 +4136,7 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
4121
4136
  callCampaignId
4122
4137
  combinedCampaignId
4123
4138
  stepType
4139
+ stepOrder
4124
4140
  noteType
4125
4141
  noteId
4126
4142
  }
@@ -4276,6 +4292,7 @@ query Company($id: String) {
4276
4292
  callCampaignId
4277
4293
  combinedCampaignId
4278
4294
  stepType
4295
+ stepOrder
4279
4296
  noteType
4280
4297
  noteId
4281
4298
  }
@@ -4884,6 +4901,7 @@ query Contact($id: String) {
4884
4901
  callCampaignId
4885
4902
  combinedCampaignId
4886
4903
  stepType
4904
+ stepOrder
4887
4905
  noteType
4888
4906
  noteId
4889
4907
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",