cf-service-sdk 0.1.44 → 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']>;
@@ -6069,6 +6074,7 @@ export declare enum UserBusinessProfileStateChoices {
6069
6074
  }
6070
6075
  /** UserProfileInput for updating user profile */
6071
6076
  export type UserProfileInput = {
6077
+ desktopNotificationsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
6072
6078
  emailSignature?: InputMaybe<Scalars['String']['input']>;
6073
6079
  firstName?: InputMaybe<Scalars['String']['input']>;
6074
6080
  lastName?: InputMaybe<Scalars['String']['input']>;
@@ -6080,6 +6086,7 @@ export type UserProfileInput = {
6080
6086
  export type UserProfileType = {
6081
6087
  __typename?: 'UserProfileType';
6082
6088
  createdAt?: Maybe<Scalars['DateTime']['output']>;
6089
+ desktopNotificationsEnabled?: Maybe<Scalars['Boolean']['output']>;
6083
6090
  emailSignature?: Maybe<Scalars['String']['output']>;
6084
6091
  firstName?: Maybe<Scalars['String']['output']>;
6085
6092
  id?: Maybe<Scalars['ID']['output']>;
@@ -6991,6 +6998,7 @@ export type CompleteRfqMutation = {
6991
6998
  companyName?: string | null;
6992
6999
  companyId?: string | null;
6993
7000
  isProspect?: boolean | null;
7001
+ isSavedToCrm?: boolean | null;
6994
7002
  lastContactedBy?: {
6995
7003
  __typename?: 'UserType';
6996
7004
  id?: string | null;
@@ -7674,6 +7682,7 @@ export type CreateCompanyMutation = {
7674
7682
  averageScore?: number | null;
7675
7683
  ownedByUser?: boolean | null;
7676
7684
  isProspect?: boolean | null;
7685
+ hasSavedContacts?: boolean | null;
7677
7686
  purchaseMetalConfidence?: number | null;
7678
7687
  lastContactedAt?: any | null;
7679
7688
  status?: string | null;
@@ -7912,6 +7921,7 @@ export type CreateCompanyMutation = {
7912
7921
  companyName?: string | null;
7913
7922
  companyId?: string | null;
7914
7923
  isProspect?: boolean | null;
7924
+ isSavedToCrm?: boolean | null;
7915
7925
  lastContactedBy?: {
7916
7926
  __typename?: 'UserType';
7917
7927
  id?: string | null;
@@ -8533,6 +8543,7 @@ export type CreateContactMutation = {
8533
8543
  companyName?: string | null;
8534
8544
  companyId?: string | null;
8535
8545
  isProspect?: boolean | null;
8546
+ isSavedToCrm?: boolean | null;
8536
8547
  lastContactedBy?: {
8537
8548
  __typename?: 'UserType';
8538
8549
  id?: string | null;
@@ -8658,6 +8669,7 @@ export type CreateMysupplierMutation = {
8658
8669
  averageScore?: number | null;
8659
8670
  ownedByUser?: boolean | null;
8660
8671
  isProspect?: boolean | null;
8672
+ hasSavedContacts?: boolean | null;
8661
8673
  purchaseMetalConfidence?: number | null;
8662
8674
  lastContactedAt?: any | null;
8663
8675
  status?: string | null;
@@ -8896,6 +8908,7 @@ export type CreateMysupplierMutation = {
8896
8908
  companyName?: string | null;
8897
8909
  companyId?: string | null;
8898
8910
  isProspect?: boolean | null;
8911
+ isSavedToCrm?: boolean | null;
8899
8912
  lastContactedBy?: {
8900
8913
  __typename?: 'UserType';
8901
8914
  id?: string | null;
@@ -9389,6 +9402,7 @@ export type CreateRfqMutation = {
9389
9402
  companyName?: string | null;
9390
9403
  companyId?: string | null;
9391
9404
  isProspect?: boolean | null;
9405
+ isSavedToCrm?: boolean | null;
9392
9406
  lastContactedBy?: {
9393
9407
  __typename?: 'UserType';
9394
9408
  id?: string | null;
@@ -9569,6 +9583,7 @@ export type CreateRfqlineitemMutation = {
9569
9583
  companyName?: string | null;
9570
9584
  companyId?: string | null;
9571
9585
  isProspect?: boolean | null;
9586
+ isSavedToCrm?: boolean | null;
9572
9587
  lastContactedBy?: {
9573
9588
  __typename?: 'UserType';
9574
9589
  id?: string | null;
@@ -9789,6 +9804,7 @@ export type CreateSupplierlistMutation = {
9789
9804
  averageScore?: number | null;
9790
9805
  ownedByUser?: boolean | null;
9791
9806
  isProspect?: boolean | null;
9807
+ hasSavedContacts?: boolean | null;
9792
9808
  purchaseMetalConfidence?: number | null;
9793
9809
  lastContactedAt?: any | null;
9794
9810
  status?: string | null;
@@ -10027,6 +10043,7 @@ export type CreateSupplierlistMutation = {
10027
10043
  companyName?: string | null;
10028
10044
  companyId?: string | null;
10029
10045
  isProspect?: boolean | null;
10046
+ isSavedToCrm?: boolean | null;
10030
10047
  lastContactedBy?: {
10031
10048
  __typename?: 'UserType';
10032
10049
  id?: string | null;
@@ -11908,6 +11925,87 @@ export type SaveContactsToCrmMutation = {
11908
11925
  savedCompanyIds?: Array<string | null> | null;
11909
11926
  warnings?: Array<string | null> | null;
11910
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;
11911
12009
  } | null;
11912
12010
  };
11913
12011
  export type SaveNylasConnectionMutationVariables = Exact<{
@@ -12168,6 +12266,7 @@ export type ScheduleRfqMutation = {
12168
12266
  companyName?: string | null;
12169
12267
  companyId?: string | null;
12170
12268
  isProspect?: boolean | null;
12269
+ isSavedToCrm?: boolean | null;
12171
12270
  lastContactedBy?: {
12172
12271
  __typename?: 'UserType';
12173
12272
  id?: string | null;
@@ -12423,6 +12522,7 @@ export type SendEmailToContactMutation = {
12423
12522
  companyName?: string | null;
12424
12523
  companyId?: string | null;
12425
12524
  isProspect?: boolean | null;
12525
+ isSavedToCrm?: boolean | null;
12426
12526
  lastContactedBy?: {
12427
12527
  __typename?: 'UserType';
12428
12528
  id?: string | null;
@@ -12977,6 +13077,7 @@ export type SendManualEmailMutation = {
12977
13077
  companyName?: string | null;
12978
13078
  companyId?: string | null;
12979
13079
  isProspect?: boolean | null;
13080
+ isSavedToCrm?: boolean | null;
12980
13081
  lastContactedBy?: {
12981
13082
  __typename?: 'UserType';
12982
13083
  id?: string | null;
@@ -14275,6 +14376,7 @@ export type UpdateCompanyMutation = {
14275
14376
  averageScore?: number | null;
14276
14377
  ownedByUser?: boolean | null;
14277
14378
  isProspect?: boolean | null;
14379
+ hasSavedContacts?: boolean | null;
14278
14380
  purchaseMetalConfidence?: number | null;
14279
14381
  lastContactedAt?: any | null;
14280
14382
  status?: string | null;
@@ -14513,6 +14615,7 @@ export type UpdateCompanyMutation = {
14513
14615
  companyName?: string | null;
14514
14616
  companyId?: string | null;
14515
14617
  isProspect?: boolean | null;
14618
+ isSavedToCrm?: boolean | null;
14516
14619
  lastContactedBy?: {
14517
14620
  __typename?: 'UserType';
14518
14621
  id?: string | null;
@@ -15164,6 +15267,7 @@ export type UpdateContactMutation = {
15164
15267
  companyName?: string | null;
15165
15268
  companyId?: string | null;
15166
15269
  isProspect?: boolean | null;
15270
+ isSavedToCrm?: boolean | null;
15167
15271
  lastContactedBy?: {
15168
15272
  __typename?: 'UserType';
15169
15273
  id?: string | null;
@@ -15327,6 +15431,7 @@ export type UpdateMysupplierMutation = {
15327
15431
  averageScore?: number | null;
15328
15432
  ownedByUser?: boolean | null;
15329
15433
  isProspect?: boolean | null;
15434
+ hasSavedContacts?: boolean | null;
15330
15435
  purchaseMetalConfidence?: number | null;
15331
15436
  lastContactedAt?: any | null;
15332
15437
  status?: string | null;
@@ -15565,6 +15670,7 @@ export type UpdateMysupplierMutation = {
15565
15670
  companyName?: string | null;
15566
15671
  companyId?: string | null;
15567
15672
  isProspect?: boolean | null;
15673
+ isSavedToCrm?: boolean | null;
15568
15674
  lastContactedBy?: {
15569
15675
  __typename?: 'UserType';
15570
15676
  id?: string | null;
@@ -16034,6 +16140,7 @@ export type UpdateRfqMutation = {
16034
16140
  companyName?: string | null;
16035
16141
  companyId?: string | null;
16036
16142
  isProspect?: boolean | null;
16143
+ isSavedToCrm?: boolean | null;
16037
16144
  lastContactedBy?: {
16038
16145
  __typename?: 'UserType';
16039
16146
  id?: string | null;
@@ -16215,6 +16322,7 @@ export type UpdateRfqlineitemMutation = {
16215
16322
  companyName?: string | null;
16216
16323
  companyId?: string | null;
16217
16324
  isProspect?: boolean | null;
16325
+ isSavedToCrm?: boolean | null;
16218
16326
  lastContactedBy?: {
16219
16327
  __typename?: 'UserType';
16220
16328
  id?: string | null;
@@ -16415,6 +16523,7 @@ export type UpdateSupplierlistMutation = {
16415
16523
  averageScore?: number | null;
16416
16524
  ownedByUser?: boolean | null;
16417
16525
  isProspect?: boolean | null;
16526
+ hasSavedContacts?: boolean | null;
16418
16527
  purchaseMetalConfidence?: number | null;
16419
16528
  lastContactedAt?: any | null;
16420
16529
  status?: string | null;
@@ -16653,6 +16762,7 @@ export type UpdateSupplierlistMutation = {
16653
16762
  companyName?: string | null;
16654
16763
  companyId?: string | null;
16655
16764
  isProspect?: boolean | null;
16765
+ isSavedToCrm?: boolean | null;
16656
16766
  lastContactedBy?: {
16657
16767
  __typename?: 'UserType';
16658
16768
  id?: string | null;
@@ -17257,6 +17367,7 @@ export type UpdateUserProfileMutation = {
17257
17367
  updatedAt?: any | null;
17258
17368
  emailSignature?: string | null;
17259
17369
  syncTasksToCalendar?: boolean | null;
17370
+ desktopNotificationsEnabled?: boolean | null;
17260
17371
  user?: {
17261
17372
  __typename?: 'UserType';
17262
17373
  id?: string | null;
@@ -18914,6 +19025,7 @@ export type CampaignLogsQuery = {
18914
19025
  companyName?: string | null;
18915
19026
  companyId?: string | null;
18916
19027
  isProspect?: boolean | null;
19028
+ isSavedToCrm?: boolean | null;
18917
19029
  lastContactedBy?: {
18918
19030
  __typename?: 'UserType';
18919
19031
  id?: string | null;
@@ -19115,6 +19227,7 @@ export type CampaignLogsQuery = {
19115
19227
  companyName?: string | null;
19116
19228
  companyId?: string | null;
19117
19229
  isProspect?: boolean | null;
19230
+ isSavedToCrm?: boolean | null;
19118
19231
  lastContactedBy?: {
19119
19232
  __typename?: 'UserType';
19120
19233
  id?: string | null;
@@ -20344,6 +20457,7 @@ export type CompaniesQuery = {
20344
20457
  averageScore?: number | null;
20345
20458
  ownedByUser?: boolean | null;
20346
20459
  isProspect?: boolean | null;
20460
+ hasSavedContacts?: boolean | null;
20347
20461
  purchaseMetalConfidence?: number | null;
20348
20462
  lastContactedAt?: any | null;
20349
20463
  status?: string | null;
@@ -20582,6 +20696,7 @@ export type CompaniesQuery = {
20582
20696
  companyName?: string | null;
20583
20697
  companyId?: string | null;
20584
20698
  isProspect?: boolean | null;
20699
+ isSavedToCrm?: boolean | null;
20585
20700
  lastContactedBy?: {
20586
20701
  __typename?: 'UserType';
20587
20702
  id?: string | null;
@@ -21049,6 +21164,7 @@ export type CompanyQuery = {
21049
21164
  averageScore?: number | null;
21050
21165
  ownedByUser?: boolean | null;
21051
21166
  isProspect?: boolean | null;
21167
+ hasSavedContacts?: boolean | null;
21052
21168
  purchaseMetalConfidence?: number | null;
21053
21169
  lastContactedAt?: any | null;
21054
21170
  status?: string | null;
@@ -21287,6 +21403,7 @@ export type CompanyQuery = {
21287
21403
  companyName?: string | null;
21288
21404
  companyId?: string | null;
21289
21405
  isProspect?: boolean | null;
21406
+ isSavedToCrm?: boolean | null;
21290
21407
  lastContactedBy?: {
21291
21408
  __typename?: 'UserType';
21292
21409
  id?: string | null;
@@ -22154,6 +22271,7 @@ export type CompanySearchQuery = {
22154
22271
  averageScore?: number | null;
22155
22272
  ownedByUser?: boolean | null;
22156
22273
  isProspect?: boolean | null;
22274
+ hasSavedContacts?: boolean | null;
22157
22275
  purchaseMetalConfidence?: number | null;
22158
22276
  lastContactedAt?: any | null;
22159
22277
  status?: string | null;
@@ -22392,6 +22510,7 @@ export type CompanySearchQuery = {
22392
22510
  companyName?: string | null;
22393
22511
  companyId?: string | null;
22394
22512
  isProspect?: boolean | null;
22513
+ isSavedToCrm?: boolean | null;
22395
22514
  lastContactedBy?: {
22396
22515
  __typename?: 'UserType';
22397
22516
  id?: string | null;
@@ -22850,6 +22969,7 @@ export type ContactQuery = {
22850
22969
  companyName?: string | null;
22851
22970
  companyId?: string | null;
22852
22971
  isProspect?: boolean | null;
22972
+ isSavedToCrm?: boolean | null;
22853
22973
  lastContactedBy?: {
22854
22974
  __typename?: 'UserType';
22855
22975
  id?: string | null;
@@ -22936,6 +23056,7 @@ export type ContactsQuery = {
22936
23056
  companyName?: string | null;
22937
23057
  companyId?: string | null;
22938
23058
  isProspect?: boolean | null;
23059
+ isSavedToCrm?: boolean | null;
22939
23060
  lastContactedBy?: {
22940
23061
  __typename?: 'UserType';
22941
23062
  id?: string | null;
@@ -23025,6 +23146,7 @@ export type ContactsInSegmentQuery = {
23025
23146
  companyName?: string | null;
23026
23147
  companyId?: string | null;
23027
23148
  isProspect?: boolean | null;
23149
+ isSavedToCrm?: boolean | null;
23028
23150
  lastContactedBy?: {
23029
23151
  __typename?: 'UserType';
23030
23152
  id?: string | null;
@@ -23680,6 +23802,7 @@ export type MysupplierQuery = {
23680
23802
  averageScore?: number | null;
23681
23803
  ownedByUser?: boolean | null;
23682
23804
  isProspect?: boolean | null;
23805
+ hasSavedContacts?: boolean | null;
23683
23806
  purchaseMetalConfidence?: number | null;
23684
23807
  lastContactedAt?: any | null;
23685
23808
  status?: string | null;
@@ -23918,6 +24041,7 @@ export type MysupplierQuery = {
23918
24041
  companyName?: string | null;
23919
24042
  companyId?: string | null;
23920
24043
  isProspect?: boolean | null;
24044
+ isSavedToCrm?: boolean | null;
23921
24045
  lastContactedBy?: {
23922
24046
  __typename?: 'UserType';
23923
24047
  id?: string | null;
@@ -24377,6 +24501,7 @@ export type MysupplierListQuery = {
24377
24501
  averageScore?: number | null;
24378
24502
  ownedByUser?: boolean | null;
24379
24503
  isProspect?: boolean | null;
24504
+ hasSavedContacts?: boolean | null;
24380
24505
  purchaseMetalConfidence?: number | null;
24381
24506
  lastContactedAt?: any | null;
24382
24507
  status?: string | null;
@@ -24615,6 +24740,7 @@ export type MysupplierListQuery = {
24615
24740
  companyName?: string | null;
24616
24741
  companyId?: string | null;
24617
24742
  isProspect?: boolean | null;
24743
+ isSavedToCrm?: boolean | null;
24618
24744
  lastContactedBy?: {
24619
24745
  __typename?: 'UserType';
24620
24746
  id?: string | null;
@@ -25219,6 +25345,7 @@ export type RecentHistoryQuery = {
25219
25345
  companyName?: string | null;
25220
25346
  companyId?: string | null;
25221
25347
  isProspect?: boolean | null;
25348
+ isSavedToCrm?: boolean | null;
25222
25349
  lastContactedBy?: {
25223
25350
  __typename?: 'UserType';
25224
25351
  id?: string | null;
@@ -25308,6 +25435,7 @@ export type RecentHistoryQuery = {
25308
25435
  averageScore?: number | null;
25309
25436
  ownedByUser?: boolean | null;
25310
25437
  isProspect?: boolean | null;
25438
+ hasSavedContacts?: boolean | null;
25311
25439
  purchaseMetalConfidence?: number | null;
25312
25440
  lastContactedAt?: any | null;
25313
25441
  status?: string | null;
@@ -25546,6 +25674,7 @@ export type RecentHistoryQuery = {
25546
25674
  companyName?: string | null;
25547
25675
  companyId?: string | null;
25548
25676
  isProspect?: boolean | null;
25677
+ isSavedToCrm?: boolean | null;
25549
25678
  lastContactedBy?: {
25550
25679
  __typename?: 'UserType';
25551
25680
  id?: string | null;
@@ -26050,6 +26179,7 @@ export type RfqQuery = {
26050
26179
  companyName?: string | null;
26051
26180
  companyId?: string | null;
26052
26181
  isProspect?: boolean | null;
26182
+ isSavedToCrm?: boolean | null;
26053
26183
  lastContactedBy?: {
26054
26184
  __typename?: 'UserType';
26055
26185
  id?: string | null;
@@ -26215,6 +26345,7 @@ export type RfqListQuery = {
26215
26345
  companyName?: string | null;
26216
26346
  companyId?: string | null;
26217
26347
  isProspect?: boolean | null;
26348
+ isSavedToCrm?: boolean | null;
26218
26349
  lastContactedBy?: {
26219
26350
  __typename?: 'UserType';
26220
26351
  id?: string | null;
@@ -26416,6 +26547,7 @@ export type RfqlineitemQuery = {
26416
26547
  companyName?: string | null;
26417
26548
  companyId?: string | null;
26418
26549
  isProspect?: boolean | null;
26550
+ isSavedToCrm?: boolean | null;
26419
26551
  lastContactedBy?: {
26420
26552
  __typename?: 'UserType';
26421
26553
  id?: string | null;
@@ -26581,6 +26713,7 @@ export type RfqlineitemListQuery = {
26581
26713
  companyName?: string | null;
26582
26714
  companyId?: string | null;
26583
26715
  isProspect?: boolean | null;
26716
+ isSavedToCrm?: boolean | null;
26584
26717
  lastContactedBy?: {
26585
26718
  __typename?: 'UserType';
26586
26719
  id?: string | null;
@@ -26853,6 +26986,7 @@ export type SearchContactsQuery = {
26853
26986
  companyName?: string | null;
26854
26987
  companyId?: string | null;
26855
26988
  isProspect?: boolean | null;
26989
+ isSavedToCrm?: boolean | null;
26856
26990
  lastContactedBy?: {
26857
26991
  __typename?: 'UserType';
26858
26992
  id?: string | null;
@@ -27113,6 +27247,7 @@ export type SupplierQuery = {
27113
27247
  companyName?: string | null;
27114
27248
  companyId?: string | null;
27115
27249
  isProspect?: boolean | null;
27250
+ isSavedToCrm?: boolean | null;
27116
27251
  lastContactedBy?: {
27117
27252
  __typename?: 'UserType';
27118
27253
  id?: string | null;
@@ -27218,6 +27353,7 @@ export type SupplierQuery = {
27218
27353
  averageScore?: number | null;
27219
27354
  ownedByUser?: boolean | null;
27220
27355
  isProspect?: boolean | null;
27356
+ hasSavedContacts?: boolean | null;
27221
27357
  purchaseMetalConfidence?: number | null;
27222
27358
  lastContactedAt?: any | null;
27223
27359
  status?: string | null;
@@ -27456,6 +27592,7 @@ export type SupplierQuery = {
27456
27592
  companyName?: string | null;
27457
27593
  companyId?: string | null;
27458
27594
  isProspect?: boolean | null;
27595
+ isSavedToCrm?: boolean | null;
27459
27596
  lastContactedBy?: {
27460
27597
  __typename?: 'UserType';
27461
27598
  id?: string | null;
@@ -27905,6 +28042,7 @@ export type SupplierListContactsQuery = {
27905
28042
  companyName?: string | null;
27906
28043
  companyId?: string | null;
27907
28044
  isProspect?: boolean | null;
28045
+ isSavedToCrm?: boolean | null;
27908
28046
  lastContactedBy?: {
27909
28047
  __typename?: 'UserType';
27910
28048
  id?: string | null;
@@ -28025,6 +28163,7 @@ export type SupplierlistQuery = {
28025
28163
  averageScore?: number | null;
28026
28164
  ownedByUser?: boolean | null;
28027
28165
  isProspect?: boolean | null;
28166
+ hasSavedContacts?: boolean | null;
28028
28167
  purchaseMetalConfidence?: number | null;
28029
28168
  lastContactedAt?: any | null;
28030
28169
  status?: string | null;
@@ -28263,6 +28402,7 @@ export type SupplierlistQuery = {
28263
28402
  companyName?: string | null;
28264
28403
  companyId?: string | null;
28265
28404
  isProspect?: boolean | null;
28405
+ isSavedToCrm?: boolean | null;
28266
28406
  lastContactedBy?: {
28267
28407
  __typename?: 'UserType';
28268
28408
  id?: string | null;
@@ -28722,6 +28862,7 @@ export type SupplierlistListQuery = {
28722
28862
  averageScore?: number | null;
28723
28863
  ownedByUser?: boolean | null;
28724
28864
  isProspect?: boolean | null;
28865
+ hasSavedContacts?: boolean | null;
28725
28866
  purchaseMetalConfidence?: number | null;
28726
28867
  lastContactedAt?: any | null;
28727
28868
  status?: string | null;
@@ -28960,6 +29101,7 @@ export type SupplierlistListQuery = {
28960
29101
  companyName?: string | null;
28961
29102
  companyId?: string | null;
28962
29103
  isProspect?: boolean | null;
29104
+ isSavedToCrm?: boolean | null;
28963
29105
  lastContactedBy?: {
28964
29106
  __typename?: 'UserType';
28965
29107
  id?: string | null;
@@ -29425,6 +29567,7 @@ export type SuppliersQuery = {
29425
29567
  companyName?: string | null;
29426
29568
  companyId?: string | null;
29427
29569
  isProspect?: boolean | null;
29570
+ isSavedToCrm?: boolean | null;
29428
29571
  lastContactedBy?: {
29429
29572
  __typename?: 'UserType';
29430
29573
  id?: string | null;
@@ -29530,6 +29673,7 @@ export type SuppliersQuery = {
29530
29673
  averageScore?: number | null;
29531
29674
  ownedByUser?: boolean | null;
29532
29675
  isProspect?: boolean | null;
29676
+ hasSavedContacts?: boolean | null;
29533
29677
  purchaseMetalConfidence?: number | null;
29534
29678
  lastContactedAt?: any | null;
29535
29679
  status?: string | null;
@@ -29768,6 +29912,7 @@ export type SuppliersQuery = {
29768
29912
  companyName?: string | null;
29769
29913
  companyId?: string | null;
29770
29914
  isProspect?: boolean | null;
29915
+ isSavedToCrm?: boolean | null;
29771
29916
  lastContactedBy?: {
29772
29917
  __typename?: 'UserType';
29773
29918
  id?: string | null;
@@ -30592,6 +30737,7 @@ export type UserProfileQuery = {
30592
30737
  updatedAt?: any | null;
30593
30738
  emailSignature?: string | null;
30594
30739
  syncTasksToCalendar?: boolean | null;
30740
+ desktopNotificationsEnabled?: boolean | null;
30595
30741
  user?: {
30596
30742
  __typename?: 'UserType';
30597
30743
  id?: string | null;