cf-service-sdk 0.1.32 → 0.1.34

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.
@@ -334,6 +334,7 @@ export type AutomatedProspectingConfigObject = {
334
334
  emailSteps?: Maybe<Scalars['Int']['output']>;
335
335
  emailTone?: Maybe<Scalars['String']['output']>;
336
336
  emailsPerBatch?: Maybe<Scalars['Int']['output']>;
337
+ estimatedCompaniesPerBatch?: Maybe<Scalars['Int']['output']>;
337
338
  followupDelayDays?: Maybe<Scalars['Int']['output']>;
338
339
  id?: Maybe<Scalars['ID']['output']>;
339
340
  isActive?: Maybe<Scalars['Boolean']['output']>;
@@ -1329,6 +1330,8 @@ export type CompanyInput = {
1329
1330
  /** List of user IDs to assign as owners of the company */
1330
1331
  owners?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1331
1332
  phone?: InputMaybe<Scalars['String']['input']>;
1333
+ /** User ID to set as primary owner for this company */
1334
+ primaryOwnerUserId?: InputMaybe<Scalars['ID']['input']>;
1332
1335
  productMetalScores?: InputMaybe<Array<InputMaybe<ProductMetalScoreInput>>>;
1333
1336
  state?: InputMaybe<Scalars['String']['input']>;
1334
1337
  /** Company status */
@@ -1583,6 +1586,8 @@ export type CompanyObject = {
1583
1586
  export type CompanyOwnersObject = {
1584
1587
  __typename?: 'CompanyOwnersObject';
1585
1588
  id?: Maybe<Scalars['ID']['output']>;
1589
+ /** Whether this owner is the primary account owner */
1590
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
1586
1591
  user?: Maybe<UserType>;
1587
1592
  };
1588
1593
  /** Extended pagination information for companies */
@@ -6854,6 +6859,7 @@ export type CompleteRfqMutation = {
6854
6859
  companyOwners?: Array<{
6855
6860
  __typename?: 'CompanyOwnersObject';
6856
6861
  id?: string | null;
6862
+ isPrimary?: boolean | null;
6857
6863
  user?: {
6858
6864
  __typename?: 'UserType';
6859
6865
  id?: string | null;
@@ -7497,6 +7503,7 @@ export type CreateCompanyMutation = {
7497
7503
  owners?: Array<{
7498
7504
  __typename?: 'CompanyOwnersObject';
7499
7505
  id?: string | null;
7506
+ isPrimary?: boolean | null;
7500
7507
  user?: {
7501
7508
  __typename?: 'UserType';
7502
7509
  id?: string | null;
@@ -7766,6 +7773,7 @@ export type CreateCompanyMutation = {
7766
7773
  companyOwners?: Array<{
7767
7774
  __typename?: 'CompanyOwnersObject';
7768
7775
  id?: string | null;
7776
+ isPrimary?: boolean | null;
7769
7777
  user?: {
7770
7778
  __typename?: 'UserType';
7771
7779
  id?: string | null;
@@ -8386,6 +8394,7 @@ export type CreateContactMutation = {
8386
8394
  companyOwners?: Array<{
8387
8395
  __typename?: 'CompanyOwnersObject';
8388
8396
  id?: string | null;
8397
+ isPrimary?: boolean | null;
8389
8398
  user?: {
8390
8399
  __typename?: 'UserType';
8391
8400
  id?: string | null;
@@ -8477,6 +8486,7 @@ export type CreateMysupplierMutation = {
8477
8486
  owners?: Array<{
8478
8487
  __typename?: 'CompanyOwnersObject';
8479
8488
  id?: string | null;
8489
+ isPrimary?: boolean | null;
8480
8490
  user?: {
8481
8491
  __typename?: 'UserType';
8482
8492
  id?: string | null;
@@ -8746,6 +8756,7 @@ export type CreateMysupplierMutation = {
8746
8756
  companyOwners?: Array<{
8747
8757
  __typename?: 'CompanyOwnersObject';
8748
8758
  id?: string | null;
8759
+ isPrimary?: boolean | null;
8749
8760
  user?: {
8750
8761
  __typename?: 'UserType';
8751
8762
  id?: string | null;
@@ -9238,6 +9249,7 @@ export type CreateRfqMutation = {
9238
9249
  companyOwners?: Array<{
9239
9250
  __typename?: 'CompanyOwnersObject';
9240
9251
  id?: string | null;
9252
+ isPrimary?: boolean | null;
9241
9253
  user?: {
9242
9254
  __typename?: 'UserType';
9243
9255
  id?: string | null;
@@ -9417,6 +9429,7 @@ export type CreateRfqlineitemMutation = {
9417
9429
  companyOwners?: Array<{
9418
9430
  __typename?: 'CompanyOwnersObject';
9419
9431
  id?: string | null;
9432
+ isPrimary?: boolean | null;
9420
9433
  user?: {
9421
9434
  __typename?: 'UserType';
9422
9435
  id?: string | null;
@@ -9603,6 +9616,7 @@ export type CreateSupplierlistMutation = {
9603
9616
  owners?: Array<{
9604
9617
  __typename?: 'CompanyOwnersObject';
9605
9618
  id?: string | null;
9619
+ isPrimary?: boolean | null;
9606
9620
  user?: {
9607
9621
  __typename?: 'UserType';
9608
9622
  id?: string | null;
@@ -9872,6 +9886,7 @@ export type CreateSupplierlistMutation = {
9872
9886
  companyOwners?: Array<{
9873
9887
  __typename?: 'CompanyOwnersObject';
9874
9888
  id?: string | null;
9889
+ isPrimary?: boolean | null;
9875
9890
  user?: {
9876
9891
  __typename?: 'UserType';
9877
9892
  id?: string | null;
@@ -11673,6 +11688,7 @@ export type SaveAutomatedProspectingConfigMutation = {
11673
11688
  nextScheduledAt?: any | null;
11674
11689
  createdAt?: any | null;
11675
11690
  updatedAt?: any | null;
11691
+ estimatedCompaniesPerBatch?: number | null;
11676
11692
  } | null;
11677
11693
  } | null;
11678
11694
  };
@@ -11974,6 +11990,7 @@ export type ScheduleRfqMutation = {
11974
11990
  companyOwners?: Array<{
11975
11991
  __typename?: 'CompanyOwnersObject';
11976
11992
  id?: string | null;
11993
+ isPrimary?: boolean | null;
11977
11994
  user?: {
11978
11995
  __typename?: 'UserType';
11979
11996
  id?: string | null;
@@ -12225,6 +12242,7 @@ export type SendEmailToContactMutation = {
12225
12242
  companyOwners?: Array<{
12226
12243
  __typename?: 'CompanyOwnersObject';
12227
12244
  id?: string | null;
12245
+ isPrimary?: boolean | null;
12228
12246
  user?: {
12229
12247
  __typename?: 'UserType';
12230
12248
  id?: string | null;
@@ -12771,6 +12789,7 @@ export type SendManualEmailMutation = {
12771
12789
  companyOwners?: Array<{
12772
12790
  __typename?: 'CompanyOwnersObject';
12773
12791
  id?: string | null;
12792
+ isPrimary?: boolean | null;
12774
12793
  user?: {
12775
12794
  __typename?: 'UserType';
12776
12795
  id?: string | null;
@@ -14020,6 +14039,7 @@ export type UpdateCompanyMutation = {
14020
14039
  owners?: Array<{
14021
14040
  __typename?: 'CompanyOwnersObject';
14022
14041
  id?: string | null;
14042
+ isPrimary?: boolean | null;
14023
14043
  user?: {
14024
14044
  __typename?: 'UserType';
14025
14045
  id?: string | null;
@@ -14289,6 +14309,7 @@ export type UpdateCompanyMutation = {
14289
14309
  companyOwners?: Array<{
14290
14310
  __typename?: 'CompanyOwnersObject';
14291
14311
  id?: string | null;
14312
+ isPrimary?: boolean | null;
14292
14313
  user?: {
14293
14314
  __typename?: 'UserType';
14294
14315
  id?: string | null;
@@ -14939,6 +14960,7 @@ export type UpdateContactMutation = {
14939
14960
  companyOwners?: Array<{
14940
14961
  __typename?: 'CompanyOwnersObject';
14941
14962
  id?: string | null;
14963
+ isPrimary?: boolean | null;
14942
14964
  user?: {
14943
14965
  __typename?: 'UserType';
14944
14966
  id?: string | null;
@@ -15068,6 +15090,7 @@ export type UpdateMysupplierMutation = {
15068
15090
  owners?: Array<{
15069
15091
  __typename?: 'CompanyOwnersObject';
15070
15092
  id?: string | null;
15093
+ isPrimary?: boolean | null;
15071
15094
  user?: {
15072
15095
  __typename?: 'UserType';
15073
15096
  id?: string | null;
@@ -15337,6 +15360,7 @@ export type UpdateMysupplierMutation = {
15337
15360
  companyOwners?: Array<{
15338
15361
  __typename?: 'CompanyOwnersObject';
15339
15362
  id?: string | null;
15363
+ isPrimary?: boolean | null;
15340
15364
  user?: {
15341
15365
  __typename?: 'UserType';
15342
15366
  id?: string | null;
@@ -15805,6 +15829,7 @@ export type UpdateRfqMutation = {
15805
15829
  companyOwners?: Array<{
15806
15830
  __typename?: 'CompanyOwnersObject';
15807
15831
  id?: string | null;
15832
+ isPrimary?: boolean | null;
15808
15833
  user?: {
15809
15834
  __typename?: 'UserType';
15810
15835
  id?: string | null;
@@ -15985,6 +16010,7 @@ export type UpdateRfqlineitemMutation = {
15985
16010
  companyOwners?: Array<{
15986
16011
  __typename?: 'CompanyOwnersObject';
15987
16012
  id?: string | null;
16013
+ isPrimary?: boolean | null;
15988
16014
  user?: {
15989
16015
  __typename?: 'UserType';
15990
16016
  id?: string | null;
@@ -16151,6 +16177,7 @@ export type UpdateSupplierlistMutation = {
16151
16177
  owners?: Array<{
16152
16178
  __typename?: 'CompanyOwnersObject';
16153
16179
  id?: string | null;
16180
+ isPrimary?: boolean | null;
16154
16181
  user?: {
16155
16182
  __typename?: 'UserType';
16156
16183
  id?: string | null;
@@ -16420,6 +16447,7 @@ export type UpdateSupplierlistMutation = {
16420
16447
  companyOwners?: Array<{
16421
16448
  __typename?: 'CompanyOwnersObject';
16422
16449
  id?: string | null;
16450
+ isPrimary?: boolean | null;
16423
16451
  user?: {
16424
16452
  __typename?: 'UserType';
16425
16453
  id?: string | null;
@@ -17241,6 +17269,7 @@ export type AutomatedProspectingConfigQuery = {
17241
17269
  nextScheduledAt?: any | null;
17242
17270
  createdAt?: any | null;
17243
17271
  updatedAt?: any | null;
17272
+ estimatedCompaniesPerBatch?: number | null;
17244
17273
  } | null;
17245
17274
  };
17246
17275
  export type AutomatedProspectingStatsQueryVariables = Exact<{
@@ -18275,6 +18304,7 @@ export type CampaignContactsQuery = {
18275
18304
  companyOwners?: Array<{
18276
18305
  __typename?: 'CompanyOwnersObject';
18277
18306
  id?: string | null;
18307
+ isPrimary?: boolean | null;
18278
18308
  user?: {
18279
18309
  __typename?: 'UserType';
18280
18310
  id?: string | null;
@@ -18671,6 +18701,7 @@ export type CampaignLogsQuery = {
18671
18701
  companyOwners?: Array<{
18672
18702
  __typename?: 'CompanyOwnersObject';
18673
18703
  id?: string | null;
18704
+ isPrimary?: boolean | null;
18674
18705
  user?: {
18675
18706
  __typename?: 'UserType';
18676
18707
  id?: string | null;
@@ -18868,6 +18899,7 @@ export type CampaignLogsQuery = {
18868
18899
  companyOwners?: Array<{
18869
18900
  __typename?: 'CompanyOwnersObject';
18870
18901
  id?: string | null;
18902
+ isPrimary?: boolean | null;
18871
18903
  user?: {
18872
18904
  __typename?: 'UserType';
18873
18905
  id?: string | null;
@@ -19169,6 +19201,7 @@ export type CombinedCampaignContactsQuery = {
19169
19201
  companyOwners?: Array<{
19170
19202
  __typename?: 'CompanyOwnersObject';
19171
19203
  id?: string | null;
19204
+ isPrimary?: boolean | null;
19172
19205
  user?: {
19173
19206
  __typename?: 'UserType';
19174
19207
  id?: string | null;
@@ -20046,6 +20079,7 @@ export type CompaniesQuery = {
20046
20079
  owners?: Array<{
20047
20080
  __typename?: 'CompanyOwnersObject';
20048
20081
  id?: string | null;
20082
+ isPrimary?: boolean | null;
20049
20083
  user?: {
20050
20084
  __typename?: 'UserType';
20051
20085
  id?: string | null;
@@ -20315,6 +20349,7 @@ export type CompaniesQuery = {
20315
20349
  companyOwners?: Array<{
20316
20350
  __typename?: 'CompanyOwnersObject';
20317
20351
  id?: string | null;
20352
+ isPrimary?: boolean | null;
20318
20353
  user?: {
20319
20354
  __typename?: 'UserType';
20320
20355
  id?: string | null;
@@ -20748,6 +20783,7 @@ export type CompanyQuery = {
20748
20783
  owners?: Array<{
20749
20784
  __typename?: 'CompanyOwnersObject';
20750
20785
  id?: string | null;
20786
+ isPrimary?: boolean | null;
20751
20787
  user?: {
20752
20788
  __typename?: 'UserType';
20753
20789
  id?: string | null;
@@ -21017,6 +21053,7 @@ export type CompanyQuery = {
21017
21053
  companyOwners?: Array<{
21018
21054
  __typename?: 'CompanyOwnersObject';
21019
21055
  id?: string | null;
21056
+ isPrimary?: boolean | null;
21020
21057
  user?: {
21021
21058
  __typename?: 'UserType';
21022
21059
  id?: string | null;
@@ -21850,6 +21887,7 @@ export type CompanySearchQuery = {
21850
21887
  owners?: Array<{
21851
21888
  __typename?: 'CompanyOwnersObject';
21852
21889
  id?: string | null;
21890
+ isPrimary?: boolean | null;
21853
21891
  user?: {
21854
21892
  __typename?: 'UserType';
21855
21893
  id?: string | null;
@@ -22119,6 +22157,7 @@ export type CompanySearchQuery = {
22119
22157
  companyOwners?: Array<{
22120
22158
  __typename?: 'CompanyOwnersObject';
22121
22159
  id?: string | null;
22160
+ isPrimary?: boolean | null;
22122
22161
  user?: {
22123
22162
  __typename?: 'UserType';
22124
22163
  id?: string | null;
@@ -22576,6 +22615,7 @@ export type ContactQuery = {
22576
22615
  companyOwners?: Array<{
22577
22616
  __typename?: 'CompanyOwnersObject';
22578
22617
  id?: string | null;
22618
+ isPrimary?: boolean | null;
22579
22619
  user?: {
22580
22620
  __typename?: 'UserType';
22581
22621
  id?: string | null;
@@ -22661,6 +22701,7 @@ export type ContactsQuery = {
22661
22701
  companyOwners?: Array<{
22662
22702
  __typename?: 'CompanyOwnersObject';
22663
22703
  id?: string | null;
22704
+ isPrimary?: boolean | null;
22664
22705
  user?: {
22665
22706
  __typename?: 'UserType';
22666
22707
  id?: string | null;
@@ -22749,6 +22790,7 @@ export type ContactsInSegmentQuery = {
22749
22790
  companyOwners?: Array<{
22750
22791
  __typename?: 'CompanyOwnersObject';
22751
22792
  id?: string | null;
22793
+ isPrimary?: boolean | null;
22752
22794
  user?: {
22753
22795
  __typename?: 'UserType';
22754
22796
  id?: string | null;
@@ -23366,6 +23408,7 @@ export type MysupplierQuery = {
23366
23408
  owners?: Array<{
23367
23409
  __typename?: 'CompanyOwnersObject';
23368
23410
  id?: string | null;
23411
+ isPrimary?: boolean | null;
23369
23412
  user?: {
23370
23413
  __typename?: 'UserType';
23371
23414
  id?: string | null;
@@ -23635,6 +23678,7 @@ export type MysupplierQuery = {
23635
23678
  companyOwners?: Array<{
23636
23679
  __typename?: 'CompanyOwnersObject';
23637
23680
  id?: string | null;
23681
+ isPrimary?: boolean | null;
23638
23682
  user?: {
23639
23683
  __typename?: 'UserType';
23640
23684
  id?: string | null;
@@ -24060,6 +24104,7 @@ export type MysupplierListQuery = {
24060
24104
  owners?: Array<{
24061
24105
  __typename?: 'CompanyOwnersObject';
24062
24106
  id?: string | null;
24107
+ isPrimary?: boolean | null;
24063
24108
  user?: {
24064
24109
  __typename?: 'UserType';
24065
24110
  id?: string | null;
@@ -24329,6 +24374,7 @@ export type MysupplierListQuery = {
24329
24374
  companyOwners?: Array<{
24330
24375
  __typename?: 'CompanyOwnersObject';
24331
24376
  id?: string | null;
24377
+ isPrimary?: boolean | null;
24332
24378
  user?: {
24333
24379
  __typename?: 'UserType';
24334
24380
  id?: string | null;
@@ -24919,6 +24965,7 @@ export type RecentHistoryQuery = {
24919
24965
  companyOwners?: Array<{
24920
24966
  __typename?: 'CompanyOwnersObject';
24921
24967
  id?: string | null;
24968
+ isPrimary?: boolean | null;
24922
24969
  user?: {
24923
24970
  __typename?: 'UserType';
24924
24971
  id?: string | null;
@@ -24974,6 +25021,7 @@ export type RecentHistoryQuery = {
24974
25021
  owners?: Array<{
24975
25022
  __typename?: 'CompanyOwnersObject';
24976
25023
  id?: string | null;
25024
+ isPrimary?: boolean | null;
24977
25025
  user?: {
24978
25026
  __typename?: 'UserType';
24979
25027
  id?: string | null;
@@ -25243,6 +25291,7 @@ export type RecentHistoryQuery = {
25243
25291
  companyOwners?: Array<{
25244
25292
  __typename?: 'CompanyOwnersObject';
25245
25293
  id?: string | null;
25294
+ isPrimary?: boolean | null;
25246
25295
  user?: {
25247
25296
  __typename?: 'UserType';
25248
25297
  id?: string | null;
@@ -25746,6 +25795,7 @@ export type RfqQuery = {
25746
25795
  companyOwners?: Array<{
25747
25796
  __typename?: 'CompanyOwnersObject';
25748
25797
  id?: string | null;
25798
+ isPrimary?: boolean | null;
25749
25799
  user?: {
25750
25800
  __typename?: 'UserType';
25751
25801
  id?: string | null;
@@ -25910,6 +25960,7 @@ export type RfqListQuery = {
25910
25960
  companyOwners?: Array<{
25911
25961
  __typename?: 'CompanyOwnersObject';
25912
25962
  id?: string | null;
25963
+ isPrimary?: boolean | null;
25913
25964
  user?: {
25914
25965
  __typename?: 'UserType';
25915
25966
  id?: string | null;
@@ -26110,6 +26161,7 @@ export type RfqlineitemQuery = {
26110
26161
  companyOwners?: Array<{
26111
26162
  __typename?: 'CompanyOwnersObject';
26112
26163
  id?: string | null;
26164
+ isPrimary?: boolean | null;
26113
26165
  user?: {
26114
26166
  __typename?: 'UserType';
26115
26167
  id?: string | null;
@@ -26274,6 +26326,7 @@ export type RfqlineitemListQuery = {
26274
26326
  companyOwners?: Array<{
26275
26327
  __typename?: 'CompanyOwnersObject';
26276
26328
  id?: string | null;
26329
+ isPrimary?: boolean | null;
26277
26330
  user?: {
26278
26331
  __typename?: 'UserType';
26279
26332
  id?: string | null;
@@ -26545,6 +26598,7 @@ export type SearchContactsQuery = {
26545
26598
  companyOwners?: Array<{
26546
26599
  __typename?: 'CompanyOwnersObject';
26547
26600
  id?: string | null;
26601
+ isPrimary?: boolean | null;
26548
26602
  user?: {
26549
26603
  __typename?: 'UserType';
26550
26604
  id?: string | null;
@@ -26752,6 +26806,7 @@ export type SupplierQuery = {
26752
26806
  companyOwners?: Array<{
26753
26807
  __typename?: 'CompanyOwnersObject';
26754
26808
  id?: string | null;
26809
+ isPrimary?: boolean | null;
26755
26810
  user?: {
26756
26811
  __typename?: 'UserType';
26757
26812
  id?: string | null;
@@ -26823,6 +26878,7 @@ export type SupplierQuery = {
26823
26878
  owners?: Array<{
26824
26879
  __typename?: 'CompanyOwnersObject';
26825
26880
  id?: string | null;
26881
+ isPrimary?: boolean | null;
26826
26882
  user?: {
26827
26883
  __typename?: 'UserType';
26828
26884
  id?: string | null;
@@ -27092,6 +27148,7 @@ export type SupplierQuery = {
27092
27148
  companyOwners?: Array<{
27093
27149
  __typename?: 'CompanyOwnersObject';
27094
27150
  id?: string | null;
27151
+ isPrimary?: boolean | null;
27095
27152
  user?: {
27096
27153
  __typename?: 'UserType';
27097
27154
  id?: string | null;
@@ -27540,6 +27597,7 @@ export type SupplierListContactsQuery = {
27540
27597
  companyOwners?: Array<{
27541
27598
  __typename?: 'CompanyOwnersObject';
27542
27599
  id?: string | null;
27600
+ isPrimary?: boolean | null;
27543
27601
  user?: {
27544
27602
  __typename?: 'UserType';
27545
27603
  id?: string | null;
@@ -27626,6 +27684,7 @@ export type SupplierlistQuery = {
27626
27684
  owners?: Array<{
27627
27685
  __typename?: 'CompanyOwnersObject';
27628
27686
  id?: string | null;
27687
+ isPrimary?: boolean | null;
27629
27688
  user?: {
27630
27689
  __typename?: 'UserType';
27631
27690
  id?: string | null;
@@ -27895,6 +27954,7 @@ export type SupplierlistQuery = {
27895
27954
  companyOwners?: Array<{
27896
27955
  __typename?: 'CompanyOwnersObject';
27897
27956
  id?: string | null;
27957
+ isPrimary?: boolean | null;
27898
27958
  user?: {
27899
27959
  __typename?: 'UserType';
27900
27960
  id?: string | null;
@@ -28320,6 +28380,7 @@ export type SupplierlistListQuery = {
28320
28380
  owners?: Array<{
28321
28381
  __typename?: 'CompanyOwnersObject';
28322
28382
  id?: string | null;
28383
+ isPrimary?: boolean | null;
28323
28384
  user?: {
28324
28385
  __typename?: 'UserType';
28325
28386
  id?: string | null;
@@ -28589,6 +28650,7 @@ export type SupplierlistListQuery = {
28589
28650
  companyOwners?: Array<{
28590
28651
  __typename?: 'CompanyOwnersObject';
28591
28652
  id?: string | null;
28653
+ isPrimary?: boolean | null;
28592
28654
  user?: {
28593
28655
  __typename?: 'UserType';
28594
28656
  id?: string | null;
@@ -29053,6 +29115,7 @@ export type SuppliersQuery = {
29053
29115
  companyOwners?: Array<{
29054
29116
  __typename?: 'CompanyOwnersObject';
29055
29117
  id?: string | null;
29118
+ isPrimary?: boolean | null;
29056
29119
  user?: {
29057
29120
  __typename?: 'UserType';
29058
29121
  id?: string | null;
@@ -29124,6 +29187,7 @@ export type SuppliersQuery = {
29124
29187
  owners?: Array<{
29125
29188
  __typename?: 'CompanyOwnersObject';
29126
29189
  id?: string | null;
29190
+ isPrimary?: boolean | null;
29127
29191
  user?: {
29128
29192
  __typename?: 'UserType';
29129
29193
  id?: string | null;
@@ -29393,6 +29457,7 @@ export type SuppliersQuery = {
29393
29457
  companyOwners?: Array<{
29394
29458
  __typename?: 'CompanyOwnersObject';
29395
29459
  id?: string | null;
29460
+ isPrimary?: boolean | null;
29396
29461
  user?: {
29397
29462
  __typename?: 'UserType';
29398
29463
  id?: string | null;
@@ -2000,6 +2000,7 @@ exports.CompleteRfqDocument = (0, client_1.gql) `
2000
2000
  lastName
2001
2001
  picture
2002
2002
  }
2003
+ isPrimary
2003
2004
  }
2004
2005
  isProspect
2005
2006
  }
@@ -2742,6 +2743,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
2742
2743
  lastName
2743
2744
  picture
2744
2745
  }
2746
+ isPrimary
2745
2747
  }
2746
2748
  statuses {
2747
2749
  id
@@ -2990,6 +2992,7 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
2990
2992
  lastName
2991
2993
  picture
2992
2994
  }
2995
+ isPrimary
2993
2996
  }
2994
2997
  isProspect
2995
2998
  }
@@ -3603,6 +3606,7 @@ exports.CreateContactDocument = (0, client_1.gql) `
3603
3606
  lastName
3604
3607
  picture
3605
3608
  }
3609
+ isPrimary
3606
3610
  }
3607
3611
  isProspect
3608
3612
  }
@@ -3715,6 +3719,7 @@ exports.CreateMysupplierDocument = (0, client_1.gql) `
3715
3719
  lastName
3716
3720
  picture
3717
3721
  }
3722
+ isPrimary
3718
3723
  }
3719
3724
  statuses {
3720
3725
  id
@@ -3963,6 +3968,7 @@ exports.CreateMysupplierDocument = (0, client_1.gql) `
3963
3968
  lastName
3964
3969
  picture
3965
3970
  }
3971
+ isPrimary
3966
3972
  }
3967
3973
  isProspect
3968
3974
  }
@@ -4459,6 +4465,7 @@ exports.CreateRfqDocument = (0, client_1.gql) `
4459
4465
  lastName
4460
4466
  picture
4461
4467
  }
4468
+ isPrimary
4462
4469
  }
4463
4470
  isProspect
4464
4471
  }
@@ -4644,6 +4651,7 @@ exports.CreateRfqlineitemDocument = (0, client_1.gql) `
4644
4651
  lastName
4645
4652
  picture
4646
4653
  }
4654
+ isPrimary
4647
4655
  }
4648
4656
  isProspect
4649
4657
  }
@@ -4888,6 +4896,7 @@ exports.CreateSupplierlistDocument = (0, client_1.gql) `
4888
4896
  lastName
4889
4897
  picture
4890
4898
  }
4899
+ isPrimary
4891
4900
  }
4892
4901
  statuses {
4893
4902
  id
@@ -5136,6 +5145,7 @@ exports.CreateSupplierlistDocument = (0, client_1.gql) `
5136
5145
  lastName
5137
5146
  picture
5138
5147
  }
5148
+ isPrimary
5139
5149
  }
5140
5150
  isProspect
5141
5151
  }
@@ -7778,6 +7788,7 @@ exports.SaveAutomatedProspectingConfigDocument = (0, client_1.gql) `
7778
7788
  nextScheduledAt
7779
7789
  createdAt
7780
7790
  updatedAt
7791
+ estimatedCompaniesPerBatch
7781
7792
  }
7782
7793
  success
7783
7794
  message
@@ -8142,6 +8153,7 @@ exports.ScheduleRfqDocument = (0, client_1.gql) `
8142
8153
  lastName
8143
8154
  picture
8144
8155
  }
8156
+ isPrimary
8145
8157
  }
8146
8158
  isProspect
8147
8159
  }
@@ -8381,6 +8393,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
8381
8393
  lastName
8382
8394
  picture
8383
8395
  }
8396
+ isPrimary
8384
8397
  }
8385
8398
  isProspect
8386
8399
  }
@@ -8944,6 +8957,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
8944
8957
  lastName
8945
8958
  picture
8946
8959
  }
8960
+ isPrimary
8947
8961
  }
8948
8962
  isProspect
8949
8963
  }
@@ -10614,6 +10628,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
10614
10628
  lastName
10615
10629
  picture
10616
10630
  }
10631
+ isPrimary
10617
10632
  }
10618
10633
  statuses {
10619
10634
  id
@@ -10862,6 +10877,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
10862
10877
  lastName
10863
10878
  picture
10864
10879
  }
10880
+ isPrimary
10865
10881
  }
10866
10882
  isProspect
10867
10883
  }
@@ -11540,6 +11556,7 @@ exports.UpdateContactDocument = (0, client_1.gql) `
11540
11556
  lastName
11541
11557
  picture
11542
11558
  }
11559
+ isPrimary
11543
11560
  }
11544
11561
  isProspect
11545
11562
  }
@@ -11723,6 +11740,7 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
11723
11740
  lastName
11724
11741
  picture
11725
11742
  }
11743
+ isPrimary
11726
11744
  }
11727
11745
  statuses {
11728
11746
  id
@@ -11971,6 +11989,7 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
11971
11989
  lastName
11972
11990
  picture
11973
11991
  }
11992
+ isPrimary
11974
11993
  }
11975
11994
  isProspect
11976
11995
  }
@@ -12426,6 +12445,7 @@ exports.UpdateRfqDocument = (0, client_1.gql) `
12426
12445
  lastName
12427
12446
  picture
12428
12447
  }
12448
+ isPrimary
12429
12449
  }
12430
12450
  isProspect
12431
12451
  }
@@ -12612,6 +12632,7 @@ exports.UpdateRfqlineitemDocument = (0, client_1.gql) `
12612
12632
  lastName
12613
12633
  picture
12614
12634
  }
12635
+ isPrimary
12615
12636
  }
12616
12637
  isProspect
12617
12638
  }
@@ -12815,6 +12836,7 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
12815
12836
  lastName
12816
12837
  picture
12817
12838
  }
12839
+ isPrimary
12818
12840
  }
12819
12841
  statuses {
12820
12842
  id
@@ -13063,6 +13085,7 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
13063
13085
  lastName
13064
13086
  picture
13065
13087
  }
13088
+ isPrimary
13066
13089
  }
13067
13090
  isProspect
13068
13091
  }
@@ -14083,6 +14106,7 @@ exports.AutomatedProspectingConfigDocument = (0, client_1.gql) `
14083
14106
  nextScheduledAt
14084
14107
  createdAt
14085
14108
  updatedAt
14109
+ estimatedCompaniesPerBatch
14086
14110
  }
14087
14111
  }
14088
14112
  `;
@@ -15418,6 +15442,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
15418
15442
  lastName
15419
15443
  picture
15420
15444
  }
15445
+ isPrimary
15421
15446
  }
15422
15447
  stepId
15423
15448
  stepOrder
@@ -15815,6 +15840,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
15815
15840
  lastName
15816
15841
  picture
15817
15842
  }
15843
+ isPrimary
15818
15844
  }
15819
15845
  isProspect
15820
15846
  }
@@ -15981,6 +16007,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
15981
16007
  lastName
15982
16008
  picture
15983
16009
  }
16010
+ isPrimary
15984
16011
  }
15985
16012
  isProspect
15986
16013
  }
@@ -16383,6 +16410,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
16383
16410
  lastName
16384
16411
  picture
16385
16412
  }
16413
+ isPrimary
16386
16414
  }
16387
16415
  stepId
16388
16416
  stepOrder
@@ -17366,6 +17394,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
17366
17394
  lastName
17367
17395
  picture
17368
17396
  }
17397
+ isPrimary
17369
17398
  }
17370
17399
  statuses {
17371
17400
  id
@@ -17614,6 +17643,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
17614
17643
  lastName
17615
17644
  picture
17616
17645
  }
17646
+ isPrimary
17617
17647
  }
17618
17648
  isProspect
17619
17649
  }
@@ -18036,6 +18066,7 @@ exports.CompanyDocument = (0, client_1.gql) `
18036
18066
  lastName
18037
18067
  picture
18038
18068
  }
18069
+ isPrimary
18039
18070
  }
18040
18071
  statuses {
18041
18072
  id
@@ -18284,6 +18315,7 @@ exports.CompanyDocument = (0, client_1.gql) `
18284
18315
  lastName
18285
18316
  picture
18286
18317
  }
18318
+ isPrimary
18287
18319
  }
18288
18320
  isProspect
18289
18321
  }
@@ -19208,6 +19240,7 @@ exports.CompanySearchDocument = (0, client_1.gql) `
19208
19240
  lastName
19209
19241
  picture
19210
19242
  }
19243
+ isPrimary
19211
19244
  }
19212
19245
  statuses {
19213
19246
  id
@@ -19456,6 +19489,7 @@ exports.CompanySearchDocument = (0, client_1.gql) `
19456
19489
  lastName
19457
19490
  picture
19458
19491
  }
19492
+ isPrimary
19459
19493
  }
19460
19494
  isProspect
19461
19495
  }
@@ -19910,6 +19944,7 @@ exports.ContactDocument = (0, client_1.gql) `
19910
19944
  lastName
19911
19945
  picture
19912
19946
  }
19947
+ isPrimary
19913
19948
  }
19914
19949
  isProspect
19915
19950
  }
@@ -20013,6 +20048,7 @@ exports.ContactsDocument = (0, client_1.gql) `
20013
20048
  lastName
20014
20049
  picture
20015
20050
  }
20051
+ isPrimary
20016
20052
  }
20017
20053
  isProspect
20018
20054
  }
@@ -20116,6 +20152,7 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
20116
20152
  lastName
20117
20153
  picture
20118
20154
  }
20155
+ isPrimary
20119
20156
  }
20120
20157
  isProspect
20121
20158
  }
@@ -21274,6 +21311,7 @@ exports.MysupplierDocument = (0, client_1.gql) `
21274
21311
  lastName
21275
21312
  picture
21276
21313
  }
21314
+ isPrimary
21277
21315
  }
21278
21316
  statuses {
21279
21317
  id
@@ -21522,6 +21560,7 @@ exports.MysupplierDocument = (0, client_1.gql) `
21522
21560
  lastName
21523
21561
  picture
21524
21562
  }
21563
+ isPrimary
21525
21564
  }
21526
21565
  isProspect
21527
21566
  }
@@ -21933,6 +21972,7 @@ exports.MysupplierListDocument = (0, client_1.gql) `
21933
21972
  lastName
21934
21973
  picture
21935
21974
  }
21975
+ isPrimary
21936
21976
  }
21937
21977
  statuses {
21938
21978
  id
@@ -22181,6 +22221,7 @@ exports.MysupplierListDocument = (0, client_1.gql) `
22181
22221
  lastName
22182
22222
  picture
22183
22223
  }
22224
+ isPrimary
22184
22225
  }
22185
22226
  isProspect
22186
22227
  }
@@ -22893,6 +22934,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
22893
22934
  lastName
22894
22935
  picture
22895
22936
  }
22937
+ isPrimary
22896
22938
  }
22897
22939
  isProspect
22898
22940
  }
@@ -22934,6 +22976,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
22934
22976
  lastName
22935
22977
  picture
22936
22978
  }
22979
+ isPrimary
22937
22980
  }
22938
22981
  statuses {
22939
22982
  id
@@ -23182,6 +23225,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
23182
23225
  lastName
23183
23226
  picture
23184
23227
  }
23228
+ isPrimary
23185
23229
  }
23186
23230
  isProspect
23187
23231
  }
@@ -23719,6 +23763,7 @@ exports.RfqDocument = (0, client_1.gql) `
23719
23763
  lastName
23720
23764
  picture
23721
23765
  }
23766
+ isPrimary
23722
23767
  }
23723
23768
  isProspect
23724
23769
  }
@@ -23896,6 +23941,7 @@ exports.RfqListDocument = (0, client_1.gql) `
23896
23941
  lastName
23897
23942
  picture
23898
23943
  }
23944
+ isPrimary
23899
23945
  }
23900
23946
  isProspect
23901
23947
  }
@@ -24134,6 +24180,7 @@ exports.RfqlineitemDocument = (0, client_1.gql) `
24134
24180
  lastName
24135
24181
  picture
24136
24182
  }
24183
+ isPrimary
24137
24184
  }
24138
24185
  isProspect
24139
24186
  }
@@ -24311,6 +24358,7 @@ exports.RfqlineitemListDocument = (0, client_1.gql) `
24311
24358
  lastName
24312
24359
  picture
24313
24360
  }
24361
+ isPrimary
24314
24362
  }
24315
24363
  isProspect
24316
24364
  }
@@ -24686,6 +24734,7 @@ exports.SearchContactsDocument = (0, client_1.gql) `
24686
24734
  lastName
24687
24735
  picture
24688
24736
  }
24737
+ isPrimary
24689
24738
  }
24690
24739
  isProspect
24691
24740
  }
@@ -25005,6 +25054,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25005
25054
  lastName
25006
25055
  picture
25007
25056
  }
25057
+ isPrimary
25008
25058
  }
25009
25059
  isProspect
25010
25060
  }
@@ -25068,6 +25118,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25068
25118
  lastName
25069
25119
  picture
25070
25120
  }
25121
+ isPrimary
25071
25122
  }
25072
25123
  statuses {
25073
25124
  id
@@ -25316,6 +25367,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25316
25367
  lastName
25317
25368
  picture
25318
25369
  }
25370
+ isPrimary
25319
25371
  }
25320
25372
  isProspect
25321
25373
  }
@@ -25759,6 +25811,7 @@ exports.SupplierListContactsDocument = (0, client_1.gql) `
25759
25811
  lastName
25760
25812
  picture
25761
25813
  }
25814
+ isPrimary
25762
25815
  }
25763
25816
  isProspect
25764
25817
  }
@@ -25881,6 +25934,7 @@ exports.SupplierlistDocument = (0, client_1.gql) `
25881
25934
  lastName
25882
25935
  picture
25883
25936
  }
25937
+ isPrimary
25884
25938
  }
25885
25939
  statuses {
25886
25940
  id
@@ -26129,6 +26183,7 @@ exports.SupplierlistDocument = (0, client_1.gql) `
26129
26183
  lastName
26130
26184
  picture
26131
26185
  }
26186
+ isPrimary
26132
26187
  }
26133
26188
  isProspect
26134
26189
  }
@@ -26540,6 +26595,7 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
26540
26595
  lastName
26541
26596
  picture
26542
26597
  }
26598
+ isPrimary
26543
26599
  }
26544
26600
  statuses {
26545
26601
  id
@@ -26788,6 +26844,7 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
26788
26844
  lastName
26789
26845
  picture
26790
26846
  }
26847
+ isPrimary
26791
26848
  }
26792
26849
  isProspect
26793
26850
  }
@@ -27234,6 +27291,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27234
27291
  lastName
27235
27292
  picture
27236
27293
  }
27294
+ isPrimary
27237
27295
  }
27238
27296
  isProspect
27239
27297
  }
@@ -27297,6 +27355,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27297
27355
  lastName
27298
27356
  picture
27299
27357
  }
27358
+ isPrimary
27300
27359
  }
27301
27360
  statuses {
27302
27361
  id
@@ -27545,6 +27604,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27545
27604
  lastName
27546
27605
  picture
27547
27606
  }
27607
+ isPrimary
27548
27608
  }
27549
27609
  isProspect
27550
27610
  }
package/dist/mutations.js CHANGED
@@ -48,6 +48,7 @@ mutation CreateMysupplier($input: MySupplierInput!) {
48
48
  lastName
49
49
  picture
50
50
  }
51
+ isPrimary
51
52
  }
52
53
  statuses {
53
54
  id
@@ -296,6 +297,7 @@ mutation CreateMysupplier($input: MySupplierInput!) {
296
297
  lastName
297
298
  picture
298
299
  }
300
+ isPrimary
299
301
  }
300
302
  isProspect
301
303
  }
@@ -684,6 +686,7 @@ mutation UpdateMysupplier($id: ID!, $input: MySupplierInput!) {
684
686
  lastName
685
687
  picture
686
688
  }
689
+ isPrimary
687
690
  }
688
691
  statuses {
689
692
  id
@@ -932,6 +935,7 @@ mutation UpdateMysupplier($id: ID!, $input: MySupplierInput!) {
932
935
  lastName
933
936
  picture
934
937
  }
938
+ isPrimary
935
939
  }
936
940
  isProspect
937
941
  }
@@ -1364,6 +1368,7 @@ mutation CreateRfq($input: RfqInput!) {
1364
1368
  lastName
1365
1369
  picture
1366
1370
  }
1371
+ isPrimary
1367
1372
  }
1368
1373
  isProspect
1369
1374
  }
@@ -1518,6 +1523,7 @@ mutation UpdateRfq($id: ID!, $input: RfqInput!) {
1518
1523
  lastName
1519
1524
  picture
1520
1525
  }
1526
+ isPrimary
1521
1527
  }
1522
1528
  isProspect
1523
1529
  }
@@ -1618,6 +1624,7 @@ mutation CreateSupplierlist($input: SupplierListInput!) {
1618
1624
  lastName
1619
1625
  picture
1620
1626
  }
1627
+ isPrimary
1621
1628
  }
1622
1629
  statuses {
1623
1630
  id
@@ -1866,6 +1873,7 @@ mutation CreateSupplierlist($input: SupplierListInput!) {
1866
1873
  lastName
1867
1874
  picture
1868
1875
  }
1876
+ isPrimary
1869
1877
  }
1870
1878
  isProspect
1871
1879
  }
@@ -2254,6 +2262,7 @@ mutation UpdateSupplierlist($id: ID!, $input: SupplierListInput!) {
2254
2262
  lastName
2255
2263
  picture
2256
2264
  }
2265
+ isPrimary
2257
2266
  }
2258
2267
  statuses {
2259
2268
  id
@@ -2502,6 +2511,7 @@ mutation UpdateSupplierlist($id: ID!, $input: SupplierListInput!) {
2502
2511
  lastName
2503
2512
  picture
2504
2513
  }
2514
+ isPrimary
2505
2515
  }
2506
2516
  isProspect
2507
2517
  }
@@ -2946,6 +2956,7 @@ mutation CreateRfqlineitem($input: RfqLineItemInput!) {
2946
2956
  lastName
2947
2957
  picture
2948
2958
  }
2959
+ isPrimary
2949
2960
  }
2950
2961
  isProspect
2951
2962
  }
@@ -3100,6 +3111,7 @@ mutation UpdateRfqlineitem($id: ID!, $input: RfqLineItemInput!) {
3100
3111
  lastName
3101
3112
  picture
3102
3113
  }
3114
+ isPrimary
3103
3115
  }
3104
3116
  isProspect
3105
3117
  }
@@ -3308,6 +3320,7 @@ mutation ScheduleRfq($input: ScheduleRfqInput!) {
3308
3320
  lastName
3309
3321
  picture
3310
3322
  }
3323
+ isPrimary
3311
3324
  }
3312
3325
  isProspect
3313
3326
  }
@@ -3459,6 +3472,7 @@ mutation CompleteRfq($input: CompleteRfqInput!) {
3459
3472
  lastName
3460
3473
  picture
3461
3474
  }
3475
+ isPrimary
3462
3476
  }
3463
3477
  isProspect
3464
3478
  }
@@ -4841,6 +4855,7 @@ mutation SendManualEmail($attachmentUrls: [EmailAttachmentInput], $bcc: [String]
4841
4855
  lastName
4842
4856
  picture
4843
4857
  }
4858
+ isPrimary
4844
4859
  }
4845
4860
  isProspect
4846
4861
  }
@@ -5154,6 +5169,7 @@ mutation CreateContact($input: ContactInput) {
5154
5169
  lastName
5155
5170
  picture
5156
5171
  }
5172
+ isPrimary
5157
5173
  }
5158
5174
  isProspect
5159
5175
  }
@@ -5230,6 +5246,7 @@ mutation UpdateContact($input: ContactInput) {
5230
5246
  lastName
5231
5247
  picture
5232
5248
  }
5249
+ isPrimary
5233
5250
  }
5234
5251
  isProspect
5235
5252
  }
@@ -5282,6 +5299,7 @@ mutation CreateCompany($input: CompanyInput) {
5282
5299
  lastName
5283
5300
  picture
5284
5301
  }
5302
+ isPrimary
5285
5303
  }
5286
5304
  statuses {
5287
5305
  id
@@ -5530,6 +5548,7 @@ mutation CreateCompany($input: CompanyInput) {
5530
5548
  lastName
5531
5549
  picture
5532
5550
  }
5551
+ isPrimary
5533
5552
  }
5534
5553
  isProspect
5535
5554
  }
@@ -5913,6 +5932,7 @@ mutation UpdateCompany($input: CompanyInput) {
5913
5932
  lastName
5914
5933
  picture
5915
5934
  }
5935
+ isPrimary
5916
5936
  }
5917
5937
  statuses {
5918
5938
  id
@@ -6161,6 +6181,7 @@ mutation UpdateCompany($input: CompanyInput) {
6161
6181
  lastName
6162
6182
  picture
6163
6183
  }
6184
+ isPrimary
6164
6185
  }
6165
6186
  isProspect
6166
6187
  }
@@ -8127,6 +8148,7 @@ mutation SendEmailToContact($campaignId: ID, $contactId: ID!, $fileAttachments:
8127
8148
  lastName
8128
8149
  picture
8129
8150
  }
8151
+ isPrimary
8130
8152
  }
8131
8153
  isProspect
8132
8154
  }
@@ -9485,6 +9507,7 @@ mutation SaveAutomatedProspectingConfig($accountId: ID!, $input: AutomatedProspe
9485
9507
  nextScheduledAt
9486
9508
  createdAt
9487
9509
  updatedAt
9510
+ estimatedCompaniesPerBatch
9488
9511
  }
9489
9512
  success
9490
9513
  message
package/dist/queries.js CHANGED
@@ -148,6 +148,7 @@ query Mysupplier($id: ID!) {
148
148
  lastName
149
149
  picture
150
150
  }
151
+ isPrimary
151
152
  }
152
153
  statuses {
153
154
  id
@@ -396,6 +397,7 @@ query Mysupplier($id: ID!) {
396
397
  lastName
397
398
  picture
398
399
  }
400
+ isPrimary
399
401
  }
400
402
  isProspect
401
403
  }
@@ -778,6 +780,7 @@ query MysupplierList($filters: Procurement_MySupplierFilterInput, $pagination: P
778
780
  lastName
779
781
  picture
780
782
  }
783
+ isPrimary
781
784
  }
782
785
  statuses {
783
786
  id
@@ -1026,6 +1029,7 @@ query MysupplierList($filters: Procurement_MySupplierFilterInput, $pagination: P
1026
1029
  lastName
1027
1030
  picture
1028
1031
  }
1032
+ isPrimary
1029
1033
  }
1030
1034
  isProspect
1031
1035
  }
@@ -1467,6 +1471,7 @@ query Rfq($id: ID!) {
1467
1471
  lastName
1468
1472
  picture
1469
1473
  }
1474
+ isPrimary
1470
1475
  }
1471
1476
  isProspect
1472
1477
  }
@@ -1615,6 +1620,7 @@ query RfqList($filters: Procurement_RfqFilterInput, $pagination: PaginationInput
1615
1620
  lastName
1616
1621
  picture
1617
1622
  }
1623
+ isPrimary
1618
1624
  }
1619
1625
  isProspect
1620
1626
  }
@@ -1724,6 +1730,7 @@ query Supplierlist($id: ID!) {
1724
1730
  lastName
1725
1731
  picture
1726
1732
  }
1733
+ isPrimary
1727
1734
  }
1728
1735
  statuses {
1729
1736
  id
@@ -1972,6 +1979,7 @@ query Supplierlist($id: ID!) {
1972
1979
  lastName
1973
1980
  picture
1974
1981
  }
1982
+ isPrimary
1975
1983
  }
1976
1984
  isProspect
1977
1985
  }
@@ -2354,6 +2362,7 @@ query SupplierlistList($filters: Procurement_SupplierListFilterInput, $paginatio
2354
2362
  lastName
2355
2363
  picture
2356
2364
  }
2365
+ isPrimary
2357
2366
  }
2358
2367
  statuses {
2359
2368
  id
@@ -2602,6 +2611,7 @@ query SupplierlistList($filters: Procurement_SupplierListFilterInput, $paginatio
2602
2611
  lastName
2603
2612
  picture
2604
2613
  }
2614
+ isPrimary
2605
2615
  }
2606
2616
  isProspect
2607
2617
  }
@@ -3055,6 +3065,7 @@ query Rfqlineitem($id: ID!) {
3055
3065
  lastName
3056
3066
  picture
3057
3067
  }
3068
+ isPrimary
3058
3069
  }
3059
3070
  isProspect
3060
3071
  }
@@ -3203,6 +3214,7 @@ query RfqlineitemList($filters: Procurement_RfqLineItemFilterInput, $pagination:
3203
3214
  lastName
3204
3215
  picture
3205
3216
  }
3217
+ isPrimary
3206
3218
  }
3207
3219
  isProspect
3208
3220
  }
@@ -3322,6 +3334,7 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
3322
3334
  lastName
3323
3335
  picture
3324
3336
  }
3337
+ isPrimary
3325
3338
  }
3326
3339
  isProspect
3327
3340
  }
@@ -3385,6 +3398,7 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
3385
3398
  lastName
3386
3399
  picture
3387
3400
  }
3401
+ isPrimary
3388
3402
  }
3389
3403
  statuses {
3390
3404
  id
@@ -3633,6 +3647,7 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
3633
3647
  lastName
3634
3648
  picture
3635
3649
  }
3650
+ isPrimary
3636
3651
  }
3637
3652
  isProspect
3638
3653
  }
@@ -4059,6 +4074,7 @@ query Supplier($id: ID!) {
4059
4074
  lastName
4060
4075
  picture
4061
4076
  }
4077
+ isPrimary
4062
4078
  }
4063
4079
  isProspect
4064
4080
  }
@@ -4122,6 +4138,7 @@ query Supplier($id: ID!) {
4122
4138
  lastName
4123
4139
  picture
4124
4140
  }
4141
+ isPrimary
4125
4142
  }
4126
4143
  statuses {
4127
4144
  id
@@ -4370,6 +4387,7 @@ query Supplier($id: ID!) {
4370
4387
  lastName
4371
4388
  picture
4372
4389
  }
4390
+ isPrimary
4373
4391
  }
4374
4392
  isProspect
4375
4393
  }
@@ -4791,6 +4809,7 @@ query SupplierListContacts($supplierListId: ID!) {
4791
4809
  lastName
4792
4810
  picture
4793
4811
  }
4812
+ isPrimary
4794
4813
  }
4795
4814
  isProspect
4796
4815
  }
@@ -5346,6 +5365,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
5346
5365
  lastName
5347
5366
  picture
5348
5367
  }
5368
+ isPrimary
5349
5369
  }
5350
5370
  stepId
5351
5371
  stepOrder
@@ -6046,6 +6066,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
6046
6066
  lastName
6047
6067
  picture
6048
6068
  }
6069
+ isPrimary
6049
6070
  }
6050
6071
  isProspect
6051
6072
  }
@@ -6087,6 +6108,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
6087
6108
  lastName
6088
6109
  picture
6089
6110
  }
6111
+ isPrimary
6090
6112
  }
6091
6113
  statuses {
6092
6114
  id
@@ -6335,6 +6357,7 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
6335
6357
  lastName
6336
6358
  picture
6337
6359
  }
6360
+ isPrimary
6338
6361
  }
6339
6362
  isProspect
6340
6363
  }
@@ -8163,6 +8186,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
8163
8186
  lastName
8164
8187
  picture
8165
8188
  }
8189
+ isPrimary
8166
8190
  }
8167
8191
  isProspect
8168
8192
  }
@@ -8329,6 +8353,7 @@ query CampaignLogs($campaignId: ID!, $pagination: PaginationInput!, $search: Str
8329
8353
  lastName
8330
8354
  picture
8331
8355
  }
8356
+ isPrimary
8332
8357
  }
8333
8358
  isProspect
8334
8359
  }
@@ -8419,6 +8444,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
8419
8444
  lastName
8420
8445
  picture
8421
8446
  }
8447
+ isPrimary
8422
8448
  }
8423
8449
  stepId
8424
8450
  stepOrder
@@ -8869,6 +8895,7 @@ query ContactsInSegment($segmentId: ID!, $pagination: PaginationInput) {
8869
8895
  lastName
8870
8896
  picture
8871
8897
  }
8898
+ isPrimary
8872
8899
  }
8873
8900
  isProspect
8874
8901
  }
@@ -8959,6 +8986,7 @@ query AutomatedProspectingConfig($accountId: ID!, $agentType: String) {
8959
8986
  nextScheduledAt
8960
8987
  createdAt
8961
8988
  updatedAt
8989
+ estimatedCompaniesPerBatch
8962
8990
  }
8963
8991
  }`;
8964
8992
  exports.AUTOMATED_PROSPECTING_CAMPAIGNS = (0, client_1.gql) `
@@ -9440,6 +9468,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
9440
9468
  lastName
9441
9469
  picture
9442
9470
  }
9471
+ isPrimary
9443
9472
  }
9444
9473
  statuses {
9445
9474
  id
@@ -9688,6 +9717,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
9688
9717
  lastName
9689
9718
  picture
9690
9719
  }
9720
+ isPrimary
9691
9721
  }
9692
9722
  isProspect
9693
9723
  }
@@ -10080,6 +10110,7 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
10080
10110
  lastName
10081
10111
  picture
10082
10112
  }
10113
+ isPrimary
10083
10114
  }
10084
10115
  statuses {
10085
10116
  id
@@ -10328,6 +10359,7 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
10328
10359
  lastName
10329
10360
  picture
10330
10361
  }
10362
+ isPrimary
10331
10363
  }
10332
10364
  isProspect
10333
10365
  }
@@ -10749,6 +10781,7 @@ query Contacts {
10749
10781
  lastName
10750
10782
  picture
10751
10783
  }
10784
+ isPrimary
10752
10785
  }
10753
10786
  isProspect
10754
10787
  }
@@ -10824,6 +10857,7 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
10824
10857
  lastName
10825
10858
  picture
10826
10859
  }
10860
+ isPrimary
10827
10861
  }
10828
10862
  isProspect
10829
10863
  }
@@ -10877,6 +10911,7 @@ query Company($id: String) {
10877
10911
  lastName
10878
10912
  picture
10879
10913
  }
10914
+ isPrimary
10880
10915
  }
10881
10916
  statuses {
10882
10917
  id
@@ -11125,6 +11160,7 @@ query Company($id: String) {
11125
11160
  lastName
11126
11161
  picture
11127
11162
  }
11163
+ isPrimary
11128
11164
  }
11129
11165
  isProspect
11130
11166
  }
@@ -11536,6 +11572,7 @@ query Contact($id: String) {
11536
11572
  lastName
11537
11573
  picture
11538
11574
  }
11575
+ isPrimary
11539
11576
  }
11540
11577
  isProspect
11541
11578
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.32",
3
+ "version": "0.1.34",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",