cf-service-sdk 0.1.17 → 0.1.18

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.
@@ -318,6 +318,7 @@ export type AutomatedProspectingConfigObject = {
318
318
  };
319
319
  export type AutomatedProspectingContactObject = {
320
320
  __typename?: 'AutomatedProspectingContactObject';
321
+ companyId?: Maybe<Scalars['ID']['output']>;
321
322
  contactCompanyName?: Maybe<Scalars['String']['output']>;
322
323
  contactEmail?: Maybe<Scalars['String']['output']>;
323
324
  contactFirstName?: Maybe<Scalars['String']['output']>;
@@ -328,6 +329,16 @@ export type AutomatedProspectingContactObject = {
328
329
  createdAt?: Maybe<Scalars['DateTime']['output']>;
329
330
  hasReplied?: Maybe<Scalars['Boolean']['output']>;
330
331
  id?: Maybe<Scalars['ID']['output']>;
332
+ isCustomer?: Maybe<Scalars['Boolean']['output']>;
333
+ isProspect?: Maybe<Scalars['Boolean']['output']>;
334
+ lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
335
+ lastContactedByFirstName?: Maybe<Scalars['String']['output']>;
336
+ lastContactedByLastName?: Maybe<Scalars['String']['output']>;
337
+ lastContactedViaActionId?: Maybe<Scalars['ID']['output']>;
338
+ lastContactedViaCampaignName?: Maybe<Scalars['String']['output']>;
339
+ ownerName?: Maybe<Scalars['String']['output']>;
340
+ phone?: Maybe<Scalars['String']['output']>;
341
+ recentlyContacted?: Maybe<Scalars['Boolean']['output']>;
331
342
  };
332
343
  export type AutomatedProspectingStatsObject = {
333
344
  __typename?: 'AutomatedProspectingStatsObject';
@@ -5697,6 +5708,17 @@ export type AddContactToAutomatedProspectingMutation = {
5697
5708
  contactEmail?: string | null;
5698
5709
  contactTitle?: string | null;
5699
5710
  contactCompanyName?: string | null;
5711
+ companyId?: string | null;
5712
+ ownerName?: string | null;
5713
+ isCustomer?: boolean | null;
5714
+ isProspect?: boolean | null;
5715
+ phone?: string | null;
5716
+ lastContactedAt?: any | null;
5717
+ lastContactedByFirstName?: string | null;
5718
+ lastContactedByLastName?: string | null;
5719
+ lastContactedViaCampaignName?: string | null;
5720
+ lastContactedViaActionId?: string | null;
5721
+ recentlyContacted?: boolean | null;
5700
5722
  hasReplied?: boolean | null;
5701
5723
  createdAt?: any | null;
5702
5724
  } | null;
@@ -6659,6 +6681,17 @@ export type ComposeAutomatedProspectingEmailMutation = {
6659
6681
  contactEmail?: string | null;
6660
6682
  contactTitle?: string | null;
6661
6683
  contactCompanyName?: string | null;
6684
+ companyId?: string | null;
6685
+ ownerName?: string | null;
6686
+ isCustomer?: boolean | null;
6687
+ isProspect?: boolean | null;
6688
+ phone?: string | null;
6689
+ lastContactedAt?: any | null;
6690
+ lastContactedByFirstName?: string | null;
6691
+ lastContactedByLastName?: string | null;
6692
+ lastContactedViaCampaignName?: string | null;
6693
+ lastContactedViaActionId?: string | null;
6694
+ recentlyContacted?: boolean | null;
6662
6695
  hasReplied?: boolean | null;
6663
6696
  createdAt?: any | null;
6664
6697
  } | null> | null;
@@ -10429,6 +10462,17 @@ export type LaunchAutomatedProspectingMutation = {
10429
10462
  contactEmail?: string | null;
10430
10463
  contactTitle?: string | null;
10431
10464
  contactCompanyName?: string | null;
10465
+ companyId?: string | null;
10466
+ ownerName?: string | null;
10467
+ isCustomer?: boolean | null;
10468
+ isProspect?: boolean | null;
10469
+ phone?: string | null;
10470
+ lastContactedAt?: any | null;
10471
+ lastContactedByFirstName?: string | null;
10472
+ lastContactedByLastName?: string | null;
10473
+ lastContactedViaCampaignName?: string | null;
10474
+ lastContactedViaActionId?: string | null;
10475
+ recentlyContacted?: boolean | null;
10432
10476
  hasReplied?: boolean | null;
10433
10477
  createdAt?: any | null;
10434
10478
  } | null> | null;
@@ -12802,6 +12846,17 @@ export type UpdateAutomatedProspectingCampaignMutation = {
12802
12846
  contactEmail?: string | null;
12803
12847
  contactTitle?: string | null;
12804
12848
  contactCompanyName?: string | null;
12849
+ companyId?: string | null;
12850
+ ownerName?: string | null;
12851
+ isCustomer?: boolean | null;
12852
+ isProspect?: boolean | null;
12853
+ phone?: string | null;
12854
+ lastContactedAt?: any | null;
12855
+ lastContactedByFirstName?: string | null;
12856
+ lastContactedByLastName?: string | null;
12857
+ lastContactedViaCampaignName?: string | null;
12858
+ lastContactedViaActionId?: string | null;
12859
+ recentlyContacted?: boolean | null;
12805
12860
  hasReplied?: boolean | null;
12806
12861
  createdAt?: any | null;
12807
12862
  } | null> | null;
@@ -16728,6 +16783,17 @@ export type AutomatedProspectingCampaignQuery = {
16728
16783
  contactEmail?: string | null;
16729
16784
  contactTitle?: string | null;
16730
16785
  contactCompanyName?: string | null;
16786
+ companyId?: string | null;
16787
+ ownerName?: string | null;
16788
+ isCustomer?: boolean | null;
16789
+ isProspect?: boolean | null;
16790
+ phone?: string | null;
16791
+ lastContactedAt?: any | null;
16792
+ lastContactedByFirstName?: string | null;
16793
+ lastContactedByLastName?: string | null;
16794
+ lastContactedViaCampaignName?: string | null;
16795
+ lastContactedViaActionId?: string | null;
16796
+ recentlyContacted?: boolean | null;
16731
16797
  hasReplied?: boolean | null;
16732
16798
  createdAt?: any | null;
16733
16799
  } | null> | null;
@@ -16779,6 +16845,17 @@ export type AutomatedProspectingCampaignsQuery = {
16779
16845
  contactEmail?: string | null;
16780
16846
  contactTitle?: string | null;
16781
16847
  contactCompanyName?: string | null;
16848
+ companyId?: string | null;
16849
+ ownerName?: string | null;
16850
+ isCustomer?: boolean | null;
16851
+ isProspect?: boolean | null;
16852
+ phone?: string | null;
16853
+ lastContactedAt?: any | null;
16854
+ lastContactedByFirstName?: string | null;
16855
+ lastContactedByLastName?: string | null;
16856
+ lastContactedViaCampaignName?: string | null;
16857
+ lastContactedViaActionId?: string | null;
16858
+ recentlyContacted?: boolean | null;
16782
16859
  hasReplied?: boolean | null;
16783
16860
  createdAt?: any | null;
16784
16861
  } | null> | null;
@@ -783,6 +783,17 @@ exports.AddContactToAutomatedProspectingDocument = (0, client_1.gql) `
783
783
  contactEmail
784
784
  contactTitle
785
785
  contactCompanyName
786
+ companyId
787
+ ownerName
788
+ isCustomer
789
+ isProspect
790
+ phone
791
+ lastContactedAt
792
+ lastContactedByFirstName
793
+ lastContactedByLastName
794
+ lastContactedViaCampaignName
795
+ lastContactedViaActionId
796
+ recentlyContacted
786
797
  hasReplied
787
798
  createdAt
788
799
  }
@@ -2057,6 +2068,17 @@ exports.ComposeAutomatedProspectingEmailDocument = (0, client_1.gql) `
2057
2068
  contactEmail
2058
2069
  contactTitle
2059
2070
  contactCompanyName
2071
+ companyId
2072
+ ownerName
2073
+ isCustomer
2074
+ isProspect
2075
+ phone
2076
+ lastContactedAt
2077
+ lastContactedByFirstName
2078
+ lastContactedByLastName
2079
+ lastContactedViaCampaignName
2080
+ lastContactedViaActionId
2081
+ recentlyContacted
2060
2082
  hasReplied
2061
2083
  createdAt
2062
2084
  }
@@ -6376,6 +6398,17 @@ exports.LaunchAutomatedProspectingDocument = (0, client_1.gql) `
6376
6398
  contactEmail
6377
6399
  contactTitle
6378
6400
  contactCompanyName
6401
+ companyId
6402
+ ownerName
6403
+ isCustomer
6404
+ isProspect
6405
+ phone
6406
+ lastContactedAt
6407
+ lastContactedByFirstName
6408
+ lastContactedByLastName
6409
+ lastContactedViaCampaignName
6410
+ lastContactedViaActionId
6411
+ recentlyContacted
6379
6412
  hasReplied
6380
6413
  createdAt
6381
6414
  }
@@ -9483,6 +9516,17 @@ exports.UpdateAutomatedProspectingCampaignDocument = (0, client_1.gql) `
9483
9516
  contactEmail
9484
9517
  contactTitle
9485
9518
  contactCompanyName
9519
+ companyId
9520
+ ownerName
9521
+ isCustomer
9522
+ isProspect
9523
+ phone
9524
+ lastContactedAt
9525
+ lastContactedByFirstName
9526
+ lastContactedByLastName
9527
+ lastContactedViaCampaignName
9528
+ lastContactedViaActionId
9529
+ recentlyContacted
9486
9530
  hasReplied
9487
9531
  createdAt
9488
9532
  }
@@ -13711,6 +13755,17 @@ exports.AutomatedProspectingCampaignDocument = (0, client_1.gql) `
13711
13755
  contactEmail
13712
13756
  contactTitle
13713
13757
  contactCompanyName
13758
+ companyId
13759
+ ownerName
13760
+ isCustomer
13761
+ isProspect
13762
+ phone
13763
+ lastContactedAt
13764
+ lastContactedByFirstName
13765
+ lastContactedByLastName
13766
+ lastContactedViaCampaignName
13767
+ lastContactedViaActionId
13768
+ recentlyContacted
13714
13769
  hasReplied
13715
13770
  createdAt
13716
13771
  }
@@ -13786,6 +13841,17 @@ exports.AutomatedProspectingCampaignsDocument = (0, client_1.gql) `
13786
13841
  contactEmail
13787
13842
  contactTitle
13788
13843
  contactCompanyName
13844
+ companyId
13845
+ ownerName
13846
+ isCustomer
13847
+ isProspect
13848
+ phone
13849
+ lastContactedAt
13850
+ lastContactedByFirstName
13851
+ lastContactedByLastName
13852
+ lastContactedViaCampaignName
13853
+ lastContactedViaActionId
13854
+ recentlyContacted
13789
13855
  hasReplied
13790
13856
  createdAt
13791
13857
  }
package/dist/mutations.js CHANGED
@@ -9484,6 +9484,17 @@ mutation ComposeAutomatedProspectingEmail($configId: ID!) {
9484
9484
  contactEmail
9485
9485
  contactTitle
9486
9486
  contactCompanyName
9487
+ companyId
9488
+ ownerName
9489
+ isCustomer
9490
+ isProspect
9491
+ phone
9492
+ lastContactedAt
9493
+ lastContactedByFirstName
9494
+ lastContactedByLastName
9495
+ lastContactedViaCampaignName
9496
+ lastContactedViaActionId
9497
+ recentlyContacted
9487
9498
  hasReplied
9488
9499
  createdAt
9489
9500
  }
@@ -9528,6 +9539,17 @@ mutation LaunchAutomatedProspecting($campaignId: ID!, $scheduledFor: DateTime) {
9528
9539
  contactEmail
9529
9540
  contactTitle
9530
9541
  contactCompanyName
9542
+ companyId
9543
+ ownerName
9544
+ isCustomer
9545
+ isProspect
9546
+ phone
9547
+ lastContactedAt
9548
+ lastContactedByFirstName
9549
+ lastContactedByLastName
9550
+ lastContactedViaCampaignName
9551
+ lastContactedViaActionId
9552
+ recentlyContacted
9531
9553
  hasReplied
9532
9554
  createdAt
9533
9555
  }
@@ -9559,6 +9581,17 @@ mutation AddContactToAutomatedProspecting($campaignId: ID!, $contactId: ID!) {
9559
9581
  contactEmail
9560
9582
  contactTitle
9561
9583
  contactCompanyName
9584
+ companyId
9585
+ ownerName
9586
+ isCustomer
9587
+ isProspect
9588
+ phone
9589
+ lastContactedAt
9590
+ lastContactedByFirstName
9591
+ lastContactedByLastName
9592
+ lastContactedViaCampaignName
9593
+ lastContactedViaActionId
9594
+ recentlyContacted
9562
9595
  hasReplied
9563
9596
  createdAt
9564
9597
  }
@@ -9605,6 +9638,17 @@ mutation UpdateAutomatedProspectingCampaign($attachments: String, $campaignId: I
9605
9638
  contactEmail
9606
9639
  contactTitle
9607
9640
  contactCompanyName
9641
+ companyId
9642
+ ownerName
9643
+ isCustomer
9644
+ isProspect
9645
+ phone
9646
+ lastContactedAt
9647
+ lastContactedByFirstName
9648
+ lastContactedByLastName
9649
+ lastContactedViaCampaignName
9650
+ lastContactedViaActionId
9651
+ recentlyContacted
9608
9652
  hasReplied
9609
9653
  createdAt
9610
9654
  }
package/dist/queries.js CHANGED
@@ -8938,6 +8938,17 @@ query AutomatedProspectingCampaigns($accountId: ID!, $status: String, $page: Int
8938
8938
  contactEmail
8939
8939
  contactTitle
8940
8940
  contactCompanyName
8941
+ companyId
8942
+ ownerName
8943
+ isCustomer
8944
+ isProspect
8945
+ phone
8946
+ lastContactedAt
8947
+ lastContactedByFirstName
8948
+ lastContactedByLastName
8949
+ lastContactedViaCampaignName
8950
+ lastContactedViaActionId
8951
+ recentlyContacted
8941
8952
  hasReplied
8942
8953
  createdAt
8943
8954
  }
@@ -8980,6 +8991,17 @@ query AutomatedProspectingCampaign($campaignId: ID!) {
8980
8991
  contactEmail
8981
8992
  contactTitle
8982
8993
  contactCompanyName
8994
+ companyId
8995
+ ownerName
8996
+ isCustomer
8997
+ isProspect
8998
+ phone
8999
+ lastContactedAt
9000
+ lastContactedByFirstName
9001
+ lastContactedByLastName
9002
+ lastContactedViaCampaignName
9003
+ lastContactedViaActionId
9004
+ recentlyContacted
8983
9005
  hasReplied
8984
9006
  createdAt
8985
9007
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",