cf-service-sdk 0.1.45 → 0.1.46

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.
@@ -1546,6 +1546,8 @@ export type CompanyObject = {
1546
1546
  facebookUrl?: Maybe<Scalars['String']['output']>;
1547
1547
  /** OpenSearch relevance score for the current search query */
1548
1548
  filterMatchScore?: Maybe<Scalars['Float']['output']>;
1549
+ /** True iff at least one contact under this company has been explicitly saved to the user's CRM */
1550
+ hasSavedContacts?: Maybe<Scalars['Boolean']['output']>;
1549
1551
  id?: Maybe<Scalars['ID']['output']>;
1550
1552
  /** List of industries with match scores */
1551
1553
  industries?: Maybe<Array<Maybe<CompanyIndustryObject>>>;
@@ -1835,6 +1837,8 @@ export type ContactObject = {
1835
1837
  isPrimary?: Maybe<Scalars['Boolean']['output']>;
1836
1838
  /** Indicates if the contact is a prospect for the current user/account */
1837
1839
  isProspect?: Maybe<Scalars['Boolean']['output']>;
1840
+ /** Indicates if this specific contact has been duplicated into the current user account CRM */
1841
+ isSavedToCrm?: Maybe<Scalars['Boolean']['output']>;
1838
1842
  /** Timestamp of the last contact interaction */
1839
1843
  lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
1840
1844
  /** User who performed the last contact action */
@@ -5112,6 +5116,7 @@ export type SaveAutomatedProspectingConfig = {
5112
5116
  };
5113
5117
  export type SaveContactsToCrm = {
5114
5118
  __typename?: 'SaveContactsToCrm';
5119
+ contacts?: Maybe<Array<Maybe<ContactObject>>>;
5115
5120
  error?: Maybe<Scalars['String']['output']>;
5116
5121
  savedCompanyIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
5117
5122
  success?: Maybe<Scalars['Boolean']['output']>;
@@ -6993,6 +6998,7 @@ export type CompleteRfqMutation = {
6993
6998
  companyName?: string | null;
6994
6999
  companyId?: string | null;
6995
7000
  isProspect?: boolean | null;
7001
+ isSavedToCrm?: boolean | null;
6996
7002
  lastContactedBy?: {
6997
7003
  __typename?: 'UserType';
6998
7004
  id?: string | null;
@@ -7676,6 +7682,7 @@ export type CreateCompanyMutation = {
7676
7682
  averageScore?: number | null;
7677
7683
  ownedByUser?: boolean | null;
7678
7684
  isProspect?: boolean | null;
7685
+ hasSavedContacts?: boolean | null;
7679
7686
  purchaseMetalConfidence?: number | null;
7680
7687
  lastContactedAt?: any | null;
7681
7688
  status?: string | null;
@@ -7914,6 +7921,7 @@ export type CreateCompanyMutation = {
7914
7921
  companyName?: string | null;
7915
7922
  companyId?: string | null;
7916
7923
  isProspect?: boolean | null;
7924
+ isSavedToCrm?: boolean | null;
7917
7925
  lastContactedBy?: {
7918
7926
  __typename?: 'UserType';
7919
7927
  id?: string | null;
@@ -8535,6 +8543,7 @@ export type CreateContactMutation = {
8535
8543
  companyName?: string | null;
8536
8544
  companyId?: string | null;
8537
8545
  isProspect?: boolean | null;
8546
+ isSavedToCrm?: boolean | null;
8538
8547
  lastContactedBy?: {
8539
8548
  __typename?: 'UserType';
8540
8549
  id?: string | null;
@@ -8660,6 +8669,7 @@ export type CreateMysupplierMutation = {
8660
8669
  averageScore?: number | null;
8661
8670
  ownedByUser?: boolean | null;
8662
8671
  isProspect?: boolean | null;
8672
+ hasSavedContacts?: boolean | null;
8663
8673
  purchaseMetalConfidence?: number | null;
8664
8674
  lastContactedAt?: any | null;
8665
8675
  status?: string | null;
@@ -8898,6 +8908,7 @@ export type CreateMysupplierMutation = {
8898
8908
  companyName?: string | null;
8899
8909
  companyId?: string | null;
8900
8910
  isProspect?: boolean | null;
8911
+ isSavedToCrm?: boolean | null;
8901
8912
  lastContactedBy?: {
8902
8913
  __typename?: 'UserType';
8903
8914
  id?: string | null;
@@ -9391,6 +9402,7 @@ export type CreateRfqMutation = {
9391
9402
  companyName?: string | null;
9392
9403
  companyId?: string | null;
9393
9404
  isProspect?: boolean | null;
9405
+ isSavedToCrm?: boolean | null;
9394
9406
  lastContactedBy?: {
9395
9407
  __typename?: 'UserType';
9396
9408
  id?: string | null;
@@ -9571,6 +9583,7 @@ export type CreateRfqlineitemMutation = {
9571
9583
  companyName?: string | null;
9572
9584
  companyId?: string | null;
9573
9585
  isProspect?: boolean | null;
9586
+ isSavedToCrm?: boolean | null;
9574
9587
  lastContactedBy?: {
9575
9588
  __typename?: 'UserType';
9576
9589
  id?: string | null;
@@ -9791,6 +9804,7 @@ export type CreateSupplierlistMutation = {
9791
9804
  averageScore?: number | null;
9792
9805
  ownedByUser?: boolean | null;
9793
9806
  isProspect?: boolean | null;
9807
+ hasSavedContacts?: boolean | null;
9794
9808
  purchaseMetalConfidence?: number | null;
9795
9809
  lastContactedAt?: any | null;
9796
9810
  status?: string | null;
@@ -10029,6 +10043,7 @@ export type CreateSupplierlistMutation = {
10029
10043
  companyName?: string | null;
10030
10044
  companyId?: string | null;
10031
10045
  isProspect?: boolean | null;
10046
+ isSavedToCrm?: boolean | null;
10032
10047
  lastContactedBy?: {
10033
10048
  __typename?: 'UserType';
10034
10049
  id?: string | null;
@@ -11910,6 +11925,87 @@ export type SaveContactsToCrmMutation = {
11910
11925
  savedCompanyIds?: Array<string | null> | null;
11911
11926
  warnings?: Array<string | null> | null;
11912
11927
  error?: string | null;
11928
+ contacts?: Array<{
11929
+ __typename?: 'ContactObject';
11930
+ id?: string | null;
11931
+ firstName?: string | null;
11932
+ lastName?: string | null;
11933
+ email?: string | null;
11934
+ workEmail?: string | null;
11935
+ workEmail2?: string | null;
11936
+ personalEmail?: string | null;
11937
+ personalEmail2?: string | null;
11938
+ phone?: string | null;
11939
+ phone2?: string | null;
11940
+ phone3?: string | null;
11941
+ title?: string | null;
11942
+ linkedinUrl?: string | null;
11943
+ isPrimary?: boolean | null;
11944
+ isCustomer?: boolean | null;
11945
+ notes?: string | null;
11946
+ lastContactedAt?: any | null;
11947
+ ownedByUser?: boolean | null;
11948
+ companyName?: string | null;
11949
+ companyId?: string | null;
11950
+ isProspect?: boolean | null;
11951
+ isSavedToCrm?: boolean | null;
11952
+ lastContactedBy?: {
11953
+ __typename?: 'UserType';
11954
+ id?: string | null;
11955
+ email?: string | null;
11956
+ firstName?: string | null;
11957
+ lastName?: string | null;
11958
+ picture?: string | null;
11959
+ } | null;
11960
+ lastContactedVia?: {
11961
+ __typename?: 'LastContactedViaType';
11962
+ actionType?: string | null;
11963
+ actionId?: string | null;
11964
+ campaignName?: string | null;
11965
+ campaignId?: string | null;
11966
+ callCampaignId?: string | null;
11967
+ combinedCampaignId?: string | null;
11968
+ stepType?: string | null;
11969
+ stepOrder?: number | null;
11970
+ noteType?: string | null;
11971
+ noteId?: string | null;
11972
+ } | null;
11973
+ contactLog?: Array<{
11974
+ __typename?: 'ContactLogObject';
11975
+ id?: string | null;
11976
+ sentAt?: any | null;
11977
+ openedAt?: any | null;
11978
+ clickedAt?: any | null;
11979
+ bouncedAt?: any | null;
11980
+ status?: string | null;
11981
+ } | null> | null;
11982
+ inSegments?: Array<{
11983
+ __typename?: 'SegmentIdObject';
11984
+ id?: string | null;
11985
+ name?: string | null;
11986
+ state?: string | null;
11987
+ industry?: string | null;
11988
+ } | null> | null;
11989
+ stats?: {
11990
+ __typename?: 'ContactStatsType';
11991
+ totalOpened?: number | null;
11992
+ totalReplied?: number | null;
11993
+ totalBounced?: number | null;
11994
+ } | null;
11995
+ companyOwners?: Array<{
11996
+ __typename?: 'CompanyOwnersObject';
11997
+ id?: string | null;
11998
+ isPrimary?: boolean | null;
11999
+ user?: {
12000
+ __typename?: 'UserType';
12001
+ id?: string | null;
12002
+ email?: string | null;
12003
+ firstName?: string | null;
12004
+ lastName?: string | null;
12005
+ picture?: string | null;
12006
+ } | null;
12007
+ } | null> | null;
12008
+ } | null> | null;
11913
12009
  } | null;
11914
12010
  };
11915
12011
  export type SaveNylasConnectionMutationVariables = Exact<{
@@ -12170,6 +12266,7 @@ export type ScheduleRfqMutation = {
12170
12266
  companyName?: string | null;
12171
12267
  companyId?: string | null;
12172
12268
  isProspect?: boolean | null;
12269
+ isSavedToCrm?: boolean | null;
12173
12270
  lastContactedBy?: {
12174
12271
  __typename?: 'UserType';
12175
12272
  id?: string | null;
@@ -12425,6 +12522,7 @@ export type SendEmailToContactMutation = {
12425
12522
  companyName?: string | null;
12426
12523
  companyId?: string | null;
12427
12524
  isProspect?: boolean | null;
12525
+ isSavedToCrm?: boolean | null;
12428
12526
  lastContactedBy?: {
12429
12527
  __typename?: 'UserType';
12430
12528
  id?: string | null;
@@ -12979,6 +13077,7 @@ export type SendManualEmailMutation = {
12979
13077
  companyName?: string | null;
12980
13078
  companyId?: string | null;
12981
13079
  isProspect?: boolean | null;
13080
+ isSavedToCrm?: boolean | null;
12982
13081
  lastContactedBy?: {
12983
13082
  __typename?: 'UserType';
12984
13083
  id?: string | null;
@@ -14277,6 +14376,7 @@ export type UpdateCompanyMutation = {
14277
14376
  averageScore?: number | null;
14278
14377
  ownedByUser?: boolean | null;
14279
14378
  isProspect?: boolean | null;
14379
+ hasSavedContacts?: boolean | null;
14280
14380
  purchaseMetalConfidence?: number | null;
14281
14381
  lastContactedAt?: any | null;
14282
14382
  status?: string | null;
@@ -14515,6 +14615,7 @@ export type UpdateCompanyMutation = {
14515
14615
  companyName?: string | null;
14516
14616
  companyId?: string | null;
14517
14617
  isProspect?: boolean | null;
14618
+ isSavedToCrm?: boolean | null;
14518
14619
  lastContactedBy?: {
14519
14620
  __typename?: 'UserType';
14520
14621
  id?: string | null;
@@ -15166,6 +15267,7 @@ export type UpdateContactMutation = {
15166
15267
  companyName?: string | null;
15167
15268
  companyId?: string | null;
15168
15269
  isProspect?: boolean | null;
15270
+ isSavedToCrm?: boolean | null;
15169
15271
  lastContactedBy?: {
15170
15272
  __typename?: 'UserType';
15171
15273
  id?: string | null;
@@ -15329,6 +15431,7 @@ export type UpdateMysupplierMutation = {
15329
15431
  averageScore?: number | null;
15330
15432
  ownedByUser?: boolean | null;
15331
15433
  isProspect?: boolean | null;
15434
+ hasSavedContacts?: boolean | null;
15332
15435
  purchaseMetalConfidence?: number | null;
15333
15436
  lastContactedAt?: any | null;
15334
15437
  status?: string | null;
@@ -15567,6 +15670,7 @@ export type UpdateMysupplierMutation = {
15567
15670
  companyName?: string | null;
15568
15671
  companyId?: string | null;
15569
15672
  isProspect?: boolean | null;
15673
+ isSavedToCrm?: boolean | null;
15570
15674
  lastContactedBy?: {
15571
15675
  __typename?: 'UserType';
15572
15676
  id?: string | null;
@@ -16036,6 +16140,7 @@ export type UpdateRfqMutation = {
16036
16140
  companyName?: string | null;
16037
16141
  companyId?: string | null;
16038
16142
  isProspect?: boolean | null;
16143
+ isSavedToCrm?: boolean | null;
16039
16144
  lastContactedBy?: {
16040
16145
  __typename?: 'UserType';
16041
16146
  id?: string | null;
@@ -16217,6 +16322,7 @@ export type UpdateRfqlineitemMutation = {
16217
16322
  companyName?: string | null;
16218
16323
  companyId?: string | null;
16219
16324
  isProspect?: boolean | null;
16325
+ isSavedToCrm?: boolean | null;
16220
16326
  lastContactedBy?: {
16221
16327
  __typename?: 'UserType';
16222
16328
  id?: string | null;
@@ -16417,6 +16523,7 @@ export type UpdateSupplierlistMutation = {
16417
16523
  averageScore?: number | null;
16418
16524
  ownedByUser?: boolean | null;
16419
16525
  isProspect?: boolean | null;
16526
+ hasSavedContacts?: boolean | null;
16420
16527
  purchaseMetalConfidence?: number | null;
16421
16528
  lastContactedAt?: any | null;
16422
16529
  status?: string | null;
@@ -16655,6 +16762,7 @@ export type UpdateSupplierlistMutation = {
16655
16762
  companyName?: string | null;
16656
16763
  companyId?: string | null;
16657
16764
  isProspect?: boolean | null;
16765
+ isSavedToCrm?: boolean | null;
16658
16766
  lastContactedBy?: {
16659
16767
  __typename?: 'UserType';
16660
16768
  id?: string | null;
@@ -18917,6 +19025,7 @@ export type CampaignLogsQuery = {
18917
19025
  companyName?: string | null;
18918
19026
  companyId?: string | null;
18919
19027
  isProspect?: boolean | null;
19028
+ isSavedToCrm?: boolean | null;
18920
19029
  lastContactedBy?: {
18921
19030
  __typename?: 'UserType';
18922
19031
  id?: string | null;
@@ -19118,6 +19227,7 @@ export type CampaignLogsQuery = {
19118
19227
  companyName?: string | null;
19119
19228
  companyId?: string | null;
19120
19229
  isProspect?: boolean | null;
19230
+ isSavedToCrm?: boolean | null;
19121
19231
  lastContactedBy?: {
19122
19232
  __typename?: 'UserType';
19123
19233
  id?: string | null;
@@ -20347,6 +20457,7 @@ export type CompaniesQuery = {
20347
20457
  averageScore?: number | null;
20348
20458
  ownedByUser?: boolean | null;
20349
20459
  isProspect?: boolean | null;
20460
+ hasSavedContacts?: boolean | null;
20350
20461
  purchaseMetalConfidence?: number | null;
20351
20462
  lastContactedAt?: any | null;
20352
20463
  status?: string | null;
@@ -20585,6 +20696,7 @@ export type CompaniesQuery = {
20585
20696
  companyName?: string | null;
20586
20697
  companyId?: string | null;
20587
20698
  isProspect?: boolean | null;
20699
+ isSavedToCrm?: boolean | null;
20588
20700
  lastContactedBy?: {
20589
20701
  __typename?: 'UserType';
20590
20702
  id?: string | null;
@@ -21052,6 +21164,7 @@ export type CompanyQuery = {
21052
21164
  averageScore?: number | null;
21053
21165
  ownedByUser?: boolean | null;
21054
21166
  isProspect?: boolean | null;
21167
+ hasSavedContacts?: boolean | null;
21055
21168
  purchaseMetalConfidence?: number | null;
21056
21169
  lastContactedAt?: any | null;
21057
21170
  status?: string | null;
@@ -21290,6 +21403,7 @@ export type CompanyQuery = {
21290
21403
  companyName?: string | null;
21291
21404
  companyId?: string | null;
21292
21405
  isProspect?: boolean | null;
21406
+ isSavedToCrm?: boolean | null;
21293
21407
  lastContactedBy?: {
21294
21408
  __typename?: 'UserType';
21295
21409
  id?: string | null;
@@ -22157,6 +22271,7 @@ export type CompanySearchQuery = {
22157
22271
  averageScore?: number | null;
22158
22272
  ownedByUser?: boolean | null;
22159
22273
  isProspect?: boolean | null;
22274
+ hasSavedContacts?: boolean | null;
22160
22275
  purchaseMetalConfidence?: number | null;
22161
22276
  lastContactedAt?: any | null;
22162
22277
  status?: string | null;
@@ -22395,6 +22510,7 @@ export type CompanySearchQuery = {
22395
22510
  companyName?: string | null;
22396
22511
  companyId?: string | null;
22397
22512
  isProspect?: boolean | null;
22513
+ isSavedToCrm?: boolean | null;
22398
22514
  lastContactedBy?: {
22399
22515
  __typename?: 'UserType';
22400
22516
  id?: string | null;
@@ -22853,6 +22969,7 @@ export type ContactQuery = {
22853
22969
  companyName?: string | null;
22854
22970
  companyId?: string | null;
22855
22971
  isProspect?: boolean | null;
22972
+ isSavedToCrm?: boolean | null;
22856
22973
  lastContactedBy?: {
22857
22974
  __typename?: 'UserType';
22858
22975
  id?: string | null;
@@ -22939,6 +23056,7 @@ export type ContactsQuery = {
22939
23056
  companyName?: string | null;
22940
23057
  companyId?: string | null;
22941
23058
  isProspect?: boolean | null;
23059
+ isSavedToCrm?: boolean | null;
22942
23060
  lastContactedBy?: {
22943
23061
  __typename?: 'UserType';
22944
23062
  id?: string | null;
@@ -23028,6 +23146,7 @@ export type ContactsInSegmentQuery = {
23028
23146
  companyName?: string | null;
23029
23147
  companyId?: string | null;
23030
23148
  isProspect?: boolean | null;
23149
+ isSavedToCrm?: boolean | null;
23031
23150
  lastContactedBy?: {
23032
23151
  __typename?: 'UserType';
23033
23152
  id?: string | null;
@@ -23683,6 +23802,7 @@ export type MysupplierQuery = {
23683
23802
  averageScore?: number | null;
23684
23803
  ownedByUser?: boolean | null;
23685
23804
  isProspect?: boolean | null;
23805
+ hasSavedContacts?: boolean | null;
23686
23806
  purchaseMetalConfidence?: number | null;
23687
23807
  lastContactedAt?: any | null;
23688
23808
  status?: string | null;
@@ -23921,6 +24041,7 @@ export type MysupplierQuery = {
23921
24041
  companyName?: string | null;
23922
24042
  companyId?: string | null;
23923
24043
  isProspect?: boolean | null;
24044
+ isSavedToCrm?: boolean | null;
23924
24045
  lastContactedBy?: {
23925
24046
  __typename?: 'UserType';
23926
24047
  id?: string | null;
@@ -24380,6 +24501,7 @@ export type MysupplierListQuery = {
24380
24501
  averageScore?: number | null;
24381
24502
  ownedByUser?: boolean | null;
24382
24503
  isProspect?: boolean | null;
24504
+ hasSavedContacts?: boolean | null;
24383
24505
  purchaseMetalConfidence?: number | null;
24384
24506
  lastContactedAt?: any | null;
24385
24507
  status?: string | null;
@@ -24618,6 +24740,7 @@ export type MysupplierListQuery = {
24618
24740
  companyName?: string | null;
24619
24741
  companyId?: string | null;
24620
24742
  isProspect?: boolean | null;
24743
+ isSavedToCrm?: boolean | null;
24621
24744
  lastContactedBy?: {
24622
24745
  __typename?: 'UserType';
24623
24746
  id?: string | null;
@@ -25222,6 +25345,7 @@ export type RecentHistoryQuery = {
25222
25345
  companyName?: string | null;
25223
25346
  companyId?: string | null;
25224
25347
  isProspect?: boolean | null;
25348
+ isSavedToCrm?: boolean | null;
25225
25349
  lastContactedBy?: {
25226
25350
  __typename?: 'UserType';
25227
25351
  id?: string | null;
@@ -25311,6 +25435,7 @@ export type RecentHistoryQuery = {
25311
25435
  averageScore?: number | null;
25312
25436
  ownedByUser?: boolean | null;
25313
25437
  isProspect?: boolean | null;
25438
+ hasSavedContacts?: boolean | null;
25314
25439
  purchaseMetalConfidence?: number | null;
25315
25440
  lastContactedAt?: any | null;
25316
25441
  status?: string | null;
@@ -25549,6 +25674,7 @@ export type RecentHistoryQuery = {
25549
25674
  companyName?: string | null;
25550
25675
  companyId?: string | null;
25551
25676
  isProspect?: boolean | null;
25677
+ isSavedToCrm?: boolean | null;
25552
25678
  lastContactedBy?: {
25553
25679
  __typename?: 'UserType';
25554
25680
  id?: string | null;
@@ -26053,6 +26179,7 @@ export type RfqQuery = {
26053
26179
  companyName?: string | null;
26054
26180
  companyId?: string | null;
26055
26181
  isProspect?: boolean | null;
26182
+ isSavedToCrm?: boolean | null;
26056
26183
  lastContactedBy?: {
26057
26184
  __typename?: 'UserType';
26058
26185
  id?: string | null;
@@ -26218,6 +26345,7 @@ export type RfqListQuery = {
26218
26345
  companyName?: string | null;
26219
26346
  companyId?: string | null;
26220
26347
  isProspect?: boolean | null;
26348
+ isSavedToCrm?: boolean | null;
26221
26349
  lastContactedBy?: {
26222
26350
  __typename?: 'UserType';
26223
26351
  id?: string | null;
@@ -26419,6 +26547,7 @@ export type RfqlineitemQuery = {
26419
26547
  companyName?: string | null;
26420
26548
  companyId?: string | null;
26421
26549
  isProspect?: boolean | null;
26550
+ isSavedToCrm?: boolean | null;
26422
26551
  lastContactedBy?: {
26423
26552
  __typename?: 'UserType';
26424
26553
  id?: string | null;
@@ -26584,6 +26713,7 @@ export type RfqlineitemListQuery = {
26584
26713
  companyName?: string | null;
26585
26714
  companyId?: string | null;
26586
26715
  isProspect?: boolean | null;
26716
+ isSavedToCrm?: boolean | null;
26587
26717
  lastContactedBy?: {
26588
26718
  __typename?: 'UserType';
26589
26719
  id?: string | null;
@@ -26856,6 +26986,7 @@ export type SearchContactsQuery = {
26856
26986
  companyName?: string | null;
26857
26987
  companyId?: string | null;
26858
26988
  isProspect?: boolean | null;
26989
+ isSavedToCrm?: boolean | null;
26859
26990
  lastContactedBy?: {
26860
26991
  __typename?: 'UserType';
26861
26992
  id?: string | null;
@@ -27116,6 +27247,7 @@ export type SupplierQuery = {
27116
27247
  companyName?: string | null;
27117
27248
  companyId?: string | null;
27118
27249
  isProspect?: boolean | null;
27250
+ isSavedToCrm?: boolean | null;
27119
27251
  lastContactedBy?: {
27120
27252
  __typename?: 'UserType';
27121
27253
  id?: string | null;
@@ -27221,6 +27353,7 @@ export type SupplierQuery = {
27221
27353
  averageScore?: number | null;
27222
27354
  ownedByUser?: boolean | null;
27223
27355
  isProspect?: boolean | null;
27356
+ hasSavedContacts?: boolean | null;
27224
27357
  purchaseMetalConfidence?: number | null;
27225
27358
  lastContactedAt?: any | null;
27226
27359
  status?: string | null;
@@ -27459,6 +27592,7 @@ export type SupplierQuery = {
27459
27592
  companyName?: string | null;
27460
27593
  companyId?: string | null;
27461
27594
  isProspect?: boolean | null;
27595
+ isSavedToCrm?: boolean | null;
27462
27596
  lastContactedBy?: {
27463
27597
  __typename?: 'UserType';
27464
27598
  id?: string | null;
@@ -27908,6 +28042,7 @@ export type SupplierListContactsQuery = {
27908
28042
  companyName?: string | null;
27909
28043
  companyId?: string | null;
27910
28044
  isProspect?: boolean | null;
28045
+ isSavedToCrm?: boolean | null;
27911
28046
  lastContactedBy?: {
27912
28047
  __typename?: 'UserType';
27913
28048
  id?: string | null;
@@ -28028,6 +28163,7 @@ export type SupplierlistQuery = {
28028
28163
  averageScore?: number | null;
28029
28164
  ownedByUser?: boolean | null;
28030
28165
  isProspect?: boolean | null;
28166
+ hasSavedContacts?: boolean | null;
28031
28167
  purchaseMetalConfidence?: number | null;
28032
28168
  lastContactedAt?: any | null;
28033
28169
  status?: string | null;
@@ -28266,6 +28402,7 @@ export type SupplierlistQuery = {
28266
28402
  companyName?: string | null;
28267
28403
  companyId?: string | null;
28268
28404
  isProspect?: boolean | null;
28405
+ isSavedToCrm?: boolean | null;
28269
28406
  lastContactedBy?: {
28270
28407
  __typename?: 'UserType';
28271
28408
  id?: string | null;
@@ -28725,6 +28862,7 @@ export type SupplierlistListQuery = {
28725
28862
  averageScore?: number | null;
28726
28863
  ownedByUser?: boolean | null;
28727
28864
  isProspect?: boolean | null;
28865
+ hasSavedContacts?: boolean | null;
28728
28866
  purchaseMetalConfidence?: number | null;
28729
28867
  lastContactedAt?: any | null;
28730
28868
  status?: string | null;
@@ -28963,6 +29101,7 @@ export type SupplierlistListQuery = {
28963
29101
  companyName?: string | null;
28964
29102
  companyId?: string | null;
28965
29103
  isProspect?: boolean | null;
29104
+ isSavedToCrm?: boolean | null;
28966
29105
  lastContactedBy?: {
28967
29106
  __typename?: 'UserType';
28968
29107
  id?: string | null;
@@ -29428,6 +29567,7 @@ export type SuppliersQuery = {
29428
29567
  companyName?: string | null;
29429
29568
  companyId?: string | null;
29430
29569
  isProspect?: boolean | null;
29570
+ isSavedToCrm?: boolean | null;
29431
29571
  lastContactedBy?: {
29432
29572
  __typename?: 'UserType';
29433
29573
  id?: string | null;
@@ -29533,6 +29673,7 @@ export type SuppliersQuery = {
29533
29673
  averageScore?: number | null;
29534
29674
  ownedByUser?: boolean | null;
29535
29675
  isProspect?: boolean | null;
29676
+ hasSavedContacts?: boolean | null;
29536
29677
  purchaseMetalConfidence?: number | null;
29537
29678
  lastContactedAt?: any | null;
29538
29679
  status?: string | null;
@@ -29771,6 +29912,7 @@ export type SuppliersQuery = {
29771
29912
  companyName?: string | null;
29772
29913
  companyId?: string | null;
29773
29914
  isProspect?: boolean | null;
29915
+ isSavedToCrm?: boolean | null;
29774
29916
  lastContactedBy?: {
29775
29917
  __typename?: 'UserType';
29776
29918
  id?: string | null;