cf-service-sdk 0.1.31 → 0.1.33

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.
@@ -1329,6 +1329,8 @@ export type CompanyInput = {
1329
1329
  /** List of user IDs to assign as owners of the company */
1330
1330
  owners?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1331
1331
  phone?: InputMaybe<Scalars['String']['input']>;
1332
+ /** User ID to set as primary owner for this company */
1333
+ primaryOwnerUserId?: InputMaybe<Scalars['ID']['input']>;
1332
1334
  productMetalScores?: InputMaybe<Array<InputMaybe<ProductMetalScoreInput>>>;
1333
1335
  state?: InputMaybe<Scalars['String']['input']>;
1334
1336
  /** Company status */
@@ -1583,6 +1585,8 @@ export type CompanyObject = {
1583
1585
  export type CompanyOwnersObject = {
1584
1586
  __typename?: 'CompanyOwnersObject';
1585
1587
  id?: Maybe<Scalars['ID']['output']>;
1588
+ /** Whether this owner is the primary account owner */
1589
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
1586
1590
  user?: Maybe<UserType>;
1587
1591
  };
1588
1592
  /** Extended pagination information for companies */
@@ -6854,6 +6858,7 @@ export type CompleteRfqMutation = {
6854
6858
  companyOwners?: Array<{
6855
6859
  __typename?: 'CompanyOwnersObject';
6856
6860
  id?: string | null;
6861
+ isPrimary?: boolean | null;
6857
6862
  user?: {
6858
6863
  __typename?: 'UserType';
6859
6864
  id?: string | null;
@@ -7497,6 +7502,7 @@ export type CreateCompanyMutation = {
7497
7502
  owners?: Array<{
7498
7503
  __typename?: 'CompanyOwnersObject';
7499
7504
  id?: string | null;
7505
+ isPrimary?: boolean | null;
7500
7506
  user?: {
7501
7507
  __typename?: 'UserType';
7502
7508
  id?: string | null;
@@ -7766,6 +7772,7 @@ export type CreateCompanyMutation = {
7766
7772
  companyOwners?: Array<{
7767
7773
  __typename?: 'CompanyOwnersObject';
7768
7774
  id?: string | null;
7775
+ isPrimary?: boolean | null;
7769
7776
  user?: {
7770
7777
  __typename?: 'UserType';
7771
7778
  id?: string | null;
@@ -8386,6 +8393,7 @@ export type CreateContactMutation = {
8386
8393
  companyOwners?: Array<{
8387
8394
  __typename?: 'CompanyOwnersObject';
8388
8395
  id?: string | null;
8396
+ isPrimary?: boolean | null;
8389
8397
  user?: {
8390
8398
  __typename?: 'UserType';
8391
8399
  id?: string | null;
@@ -8477,6 +8485,7 @@ export type CreateMysupplierMutation = {
8477
8485
  owners?: Array<{
8478
8486
  __typename?: 'CompanyOwnersObject';
8479
8487
  id?: string | null;
8488
+ isPrimary?: boolean | null;
8480
8489
  user?: {
8481
8490
  __typename?: 'UserType';
8482
8491
  id?: string | null;
@@ -8746,6 +8755,7 @@ export type CreateMysupplierMutation = {
8746
8755
  companyOwners?: Array<{
8747
8756
  __typename?: 'CompanyOwnersObject';
8748
8757
  id?: string | null;
8758
+ isPrimary?: boolean | null;
8749
8759
  user?: {
8750
8760
  __typename?: 'UserType';
8751
8761
  id?: string | null;
@@ -9238,6 +9248,7 @@ export type CreateRfqMutation = {
9238
9248
  companyOwners?: Array<{
9239
9249
  __typename?: 'CompanyOwnersObject';
9240
9250
  id?: string | null;
9251
+ isPrimary?: boolean | null;
9241
9252
  user?: {
9242
9253
  __typename?: 'UserType';
9243
9254
  id?: string | null;
@@ -9417,6 +9428,7 @@ export type CreateRfqlineitemMutation = {
9417
9428
  companyOwners?: Array<{
9418
9429
  __typename?: 'CompanyOwnersObject';
9419
9430
  id?: string | null;
9431
+ isPrimary?: boolean | null;
9420
9432
  user?: {
9421
9433
  __typename?: 'UserType';
9422
9434
  id?: string | null;
@@ -9603,6 +9615,7 @@ export type CreateSupplierlistMutation = {
9603
9615
  owners?: Array<{
9604
9616
  __typename?: 'CompanyOwnersObject';
9605
9617
  id?: string | null;
9618
+ isPrimary?: boolean | null;
9606
9619
  user?: {
9607
9620
  __typename?: 'UserType';
9608
9621
  id?: string | null;
@@ -9872,6 +9885,7 @@ export type CreateSupplierlistMutation = {
9872
9885
  companyOwners?: Array<{
9873
9886
  __typename?: 'CompanyOwnersObject';
9874
9887
  id?: string | null;
9888
+ isPrimary?: boolean | null;
9875
9889
  user?: {
9876
9890
  __typename?: 'UserType';
9877
9891
  id?: string | null;
@@ -11974,6 +11988,7 @@ export type ScheduleRfqMutation = {
11974
11988
  companyOwners?: Array<{
11975
11989
  __typename?: 'CompanyOwnersObject';
11976
11990
  id?: string | null;
11991
+ isPrimary?: boolean | null;
11977
11992
  user?: {
11978
11993
  __typename?: 'UserType';
11979
11994
  id?: string | null;
@@ -12225,6 +12240,7 @@ export type SendEmailToContactMutation = {
12225
12240
  companyOwners?: Array<{
12226
12241
  __typename?: 'CompanyOwnersObject';
12227
12242
  id?: string | null;
12243
+ isPrimary?: boolean | null;
12228
12244
  user?: {
12229
12245
  __typename?: 'UserType';
12230
12246
  id?: string | null;
@@ -12771,6 +12787,7 @@ export type SendManualEmailMutation = {
12771
12787
  companyOwners?: Array<{
12772
12788
  __typename?: 'CompanyOwnersObject';
12773
12789
  id?: string | null;
12790
+ isPrimary?: boolean | null;
12774
12791
  user?: {
12775
12792
  __typename?: 'UserType';
12776
12793
  id?: string | null;
@@ -14020,6 +14037,7 @@ export type UpdateCompanyMutation = {
14020
14037
  owners?: Array<{
14021
14038
  __typename?: 'CompanyOwnersObject';
14022
14039
  id?: string | null;
14040
+ isPrimary?: boolean | null;
14023
14041
  user?: {
14024
14042
  __typename?: 'UserType';
14025
14043
  id?: string | null;
@@ -14289,6 +14307,7 @@ export type UpdateCompanyMutation = {
14289
14307
  companyOwners?: Array<{
14290
14308
  __typename?: 'CompanyOwnersObject';
14291
14309
  id?: string | null;
14310
+ isPrimary?: boolean | null;
14292
14311
  user?: {
14293
14312
  __typename?: 'UserType';
14294
14313
  id?: string | null;
@@ -14939,6 +14958,7 @@ export type UpdateContactMutation = {
14939
14958
  companyOwners?: Array<{
14940
14959
  __typename?: 'CompanyOwnersObject';
14941
14960
  id?: string | null;
14961
+ isPrimary?: boolean | null;
14942
14962
  user?: {
14943
14963
  __typename?: 'UserType';
14944
14964
  id?: string | null;
@@ -15068,6 +15088,7 @@ export type UpdateMysupplierMutation = {
15068
15088
  owners?: Array<{
15069
15089
  __typename?: 'CompanyOwnersObject';
15070
15090
  id?: string | null;
15091
+ isPrimary?: boolean | null;
15071
15092
  user?: {
15072
15093
  __typename?: 'UserType';
15073
15094
  id?: string | null;
@@ -15337,6 +15358,7 @@ export type UpdateMysupplierMutation = {
15337
15358
  companyOwners?: Array<{
15338
15359
  __typename?: 'CompanyOwnersObject';
15339
15360
  id?: string | null;
15361
+ isPrimary?: boolean | null;
15340
15362
  user?: {
15341
15363
  __typename?: 'UserType';
15342
15364
  id?: string | null;
@@ -15805,6 +15827,7 @@ export type UpdateRfqMutation = {
15805
15827
  companyOwners?: Array<{
15806
15828
  __typename?: 'CompanyOwnersObject';
15807
15829
  id?: string | null;
15830
+ isPrimary?: boolean | null;
15808
15831
  user?: {
15809
15832
  __typename?: 'UserType';
15810
15833
  id?: string | null;
@@ -15985,6 +16008,7 @@ export type UpdateRfqlineitemMutation = {
15985
16008
  companyOwners?: Array<{
15986
16009
  __typename?: 'CompanyOwnersObject';
15987
16010
  id?: string | null;
16011
+ isPrimary?: boolean | null;
15988
16012
  user?: {
15989
16013
  __typename?: 'UserType';
15990
16014
  id?: string | null;
@@ -16151,6 +16175,7 @@ export type UpdateSupplierlistMutation = {
16151
16175
  owners?: Array<{
16152
16176
  __typename?: 'CompanyOwnersObject';
16153
16177
  id?: string | null;
16178
+ isPrimary?: boolean | null;
16154
16179
  user?: {
16155
16180
  __typename?: 'UserType';
16156
16181
  id?: string | null;
@@ -16420,6 +16445,7 @@ export type UpdateSupplierlistMutation = {
16420
16445
  companyOwners?: Array<{
16421
16446
  __typename?: 'CompanyOwnersObject';
16422
16447
  id?: string | null;
16448
+ isPrimary?: boolean | null;
16423
16449
  user?: {
16424
16450
  __typename?: 'UserType';
16425
16451
  id?: string | null;
@@ -18275,6 +18301,7 @@ export type CampaignContactsQuery = {
18275
18301
  companyOwners?: Array<{
18276
18302
  __typename?: 'CompanyOwnersObject';
18277
18303
  id?: string | null;
18304
+ isPrimary?: boolean | null;
18278
18305
  user?: {
18279
18306
  __typename?: 'UserType';
18280
18307
  id?: string | null;
@@ -18671,6 +18698,7 @@ export type CampaignLogsQuery = {
18671
18698
  companyOwners?: Array<{
18672
18699
  __typename?: 'CompanyOwnersObject';
18673
18700
  id?: string | null;
18701
+ isPrimary?: boolean | null;
18674
18702
  user?: {
18675
18703
  __typename?: 'UserType';
18676
18704
  id?: string | null;
@@ -18868,6 +18896,7 @@ export type CampaignLogsQuery = {
18868
18896
  companyOwners?: Array<{
18869
18897
  __typename?: 'CompanyOwnersObject';
18870
18898
  id?: string | null;
18899
+ isPrimary?: boolean | null;
18871
18900
  user?: {
18872
18901
  __typename?: 'UserType';
18873
18902
  id?: string | null;
@@ -19169,6 +19198,7 @@ export type CombinedCampaignContactsQuery = {
19169
19198
  companyOwners?: Array<{
19170
19199
  __typename?: 'CompanyOwnersObject';
19171
19200
  id?: string | null;
19201
+ isPrimary?: boolean | null;
19172
19202
  user?: {
19173
19203
  __typename?: 'UserType';
19174
19204
  id?: string | null;
@@ -20046,6 +20076,7 @@ export type CompaniesQuery = {
20046
20076
  owners?: Array<{
20047
20077
  __typename?: 'CompanyOwnersObject';
20048
20078
  id?: string | null;
20079
+ isPrimary?: boolean | null;
20049
20080
  user?: {
20050
20081
  __typename?: 'UserType';
20051
20082
  id?: string | null;
@@ -20315,6 +20346,7 @@ export type CompaniesQuery = {
20315
20346
  companyOwners?: Array<{
20316
20347
  __typename?: 'CompanyOwnersObject';
20317
20348
  id?: string | null;
20349
+ isPrimary?: boolean | null;
20318
20350
  user?: {
20319
20351
  __typename?: 'UserType';
20320
20352
  id?: string | null;
@@ -20748,6 +20780,7 @@ export type CompanyQuery = {
20748
20780
  owners?: Array<{
20749
20781
  __typename?: 'CompanyOwnersObject';
20750
20782
  id?: string | null;
20783
+ isPrimary?: boolean | null;
20751
20784
  user?: {
20752
20785
  __typename?: 'UserType';
20753
20786
  id?: string | null;
@@ -21017,6 +21050,7 @@ export type CompanyQuery = {
21017
21050
  companyOwners?: Array<{
21018
21051
  __typename?: 'CompanyOwnersObject';
21019
21052
  id?: string | null;
21053
+ isPrimary?: boolean | null;
21020
21054
  user?: {
21021
21055
  __typename?: 'UserType';
21022
21056
  id?: string | null;
@@ -21850,6 +21884,7 @@ export type CompanySearchQuery = {
21850
21884
  owners?: Array<{
21851
21885
  __typename?: 'CompanyOwnersObject';
21852
21886
  id?: string | null;
21887
+ isPrimary?: boolean | null;
21853
21888
  user?: {
21854
21889
  __typename?: 'UserType';
21855
21890
  id?: string | null;
@@ -22119,6 +22154,7 @@ export type CompanySearchQuery = {
22119
22154
  companyOwners?: Array<{
22120
22155
  __typename?: 'CompanyOwnersObject';
22121
22156
  id?: string | null;
22157
+ isPrimary?: boolean | null;
22122
22158
  user?: {
22123
22159
  __typename?: 'UserType';
22124
22160
  id?: string | null;
@@ -22576,6 +22612,7 @@ export type ContactQuery = {
22576
22612
  companyOwners?: Array<{
22577
22613
  __typename?: 'CompanyOwnersObject';
22578
22614
  id?: string | null;
22615
+ isPrimary?: boolean | null;
22579
22616
  user?: {
22580
22617
  __typename?: 'UserType';
22581
22618
  id?: string | null;
@@ -22661,6 +22698,7 @@ export type ContactsQuery = {
22661
22698
  companyOwners?: Array<{
22662
22699
  __typename?: 'CompanyOwnersObject';
22663
22700
  id?: string | null;
22701
+ isPrimary?: boolean | null;
22664
22702
  user?: {
22665
22703
  __typename?: 'UserType';
22666
22704
  id?: string | null;
@@ -22749,6 +22787,7 @@ export type ContactsInSegmentQuery = {
22749
22787
  companyOwners?: Array<{
22750
22788
  __typename?: 'CompanyOwnersObject';
22751
22789
  id?: string | null;
22790
+ isPrimary?: boolean | null;
22752
22791
  user?: {
22753
22792
  __typename?: 'UserType';
22754
22793
  id?: string | null;
@@ -23366,6 +23405,7 @@ export type MysupplierQuery = {
23366
23405
  owners?: Array<{
23367
23406
  __typename?: 'CompanyOwnersObject';
23368
23407
  id?: string | null;
23408
+ isPrimary?: boolean | null;
23369
23409
  user?: {
23370
23410
  __typename?: 'UserType';
23371
23411
  id?: string | null;
@@ -23635,6 +23675,7 @@ export type MysupplierQuery = {
23635
23675
  companyOwners?: Array<{
23636
23676
  __typename?: 'CompanyOwnersObject';
23637
23677
  id?: string | null;
23678
+ isPrimary?: boolean | null;
23638
23679
  user?: {
23639
23680
  __typename?: 'UserType';
23640
23681
  id?: string | null;
@@ -24060,6 +24101,7 @@ export type MysupplierListQuery = {
24060
24101
  owners?: Array<{
24061
24102
  __typename?: 'CompanyOwnersObject';
24062
24103
  id?: string | null;
24104
+ isPrimary?: boolean | null;
24063
24105
  user?: {
24064
24106
  __typename?: 'UserType';
24065
24107
  id?: string | null;
@@ -24329,6 +24371,7 @@ export type MysupplierListQuery = {
24329
24371
  companyOwners?: Array<{
24330
24372
  __typename?: 'CompanyOwnersObject';
24331
24373
  id?: string | null;
24374
+ isPrimary?: boolean | null;
24332
24375
  user?: {
24333
24376
  __typename?: 'UserType';
24334
24377
  id?: string | null;
@@ -24919,6 +24962,7 @@ export type RecentHistoryQuery = {
24919
24962
  companyOwners?: Array<{
24920
24963
  __typename?: 'CompanyOwnersObject';
24921
24964
  id?: string | null;
24965
+ isPrimary?: boolean | null;
24922
24966
  user?: {
24923
24967
  __typename?: 'UserType';
24924
24968
  id?: string | null;
@@ -24974,6 +25018,7 @@ export type RecentHistoryQuery = {
24974
25018
  owners?: Array<{
24975
25019
  __typename?: 'CompanyOwnersObject';
24976
25020
  id?: string | null;
25021
+ isPrimary?: boolean | null;
24977
25022
  user?: {
24978
25023
  __typename?: 'UserType';
24979
25024
  id?: string | null;
@@ -25243,6 +25288,7 @@ export type RecentHistoryQuery = {
25243
25288
  companyOwners?: Array<{
25244
25289
  __typename?: 'CompanyOwnersObject';
25245
25290
  id?: string | null;
25291
+ isPrimary?: boolean | null;
25246
25292
  user?: {
25247
25293
  __typename?: 'UserType';
25248
25294
  id?: string | null;
@@ -25746,6 +25792,7 @@ export type RfqQuery = {
25746
25792
  companyOwners?: Array<{
25747
25793
  __typename?: 'CompanyOwnersObject';
25748
25794
  id?: string | null;
25795
+ isPrimary?: boolean | null;
25749
25796
  user?: {
25750
25797
  __typename?: 'UserType';
25751
25798
  id?: string | null;
@@ -25910,6 +25957,7 @@ export type RfqListQuery = {
25910
25957
  companyOwners?: Array<{
25911
25958
  __typename?: 'CompanyOwnersObject';
25912
25959
  id?: string | null;
25960
+ isPrimary?: boolean | null;
25913
25961
  user?: {
25914
25962
  __typename?: 'UserType';
25915
25963
  id?: string | null;
@@ -26110,6 +26158,7 @@ export type RfqlineitemQuery = {
26110
26158
  companyOwners?: Array<{
26111
26159
  __typename?: 'CompanyOwnersObject';
26112
26160
  id?: string | null;
26161
+ isPrimary?: boolean | null;
26113
26162
  user?: {
26114
26163
  __typename?: 'UserType';
26115
26164
  id?: string | null;
@@ -26274,6 +26323,7 @@ export type RfqlineitemListQuery = {
26274
26323
  companyOwners?: Array<{
26275
26324
  __typename?: 'CompanyOwnersObject';
26276
26325
  id?: string | null;
26326
+ isPrimary?: boolean | null;
26277
26327
  user?: {
26278
26328
  __typename?: 'UserType';
26279
26329
  id?: string | null;
@@ -26545,6 +26595,7 @@ export type SearchContactsQuery = {
26545
26595
  companyOwners?: Array<{
26546
26596
  __typename?: 'CompanyOwnersObject';
26547
26597
  id?: string | null;
26598
+ isPrimary?: boolean | null;
26548
26599
  user?: {
26549
26600
  __typename?: 'UserType';
26550
26601
  id?: string | null;
@@ -26752,6 +26803,7 @@ export type SupplierQuery = {
26752
26803
  companyOwners?: Array<{
26753
26804
  __typename?: 'CompanyOwnersObject';
26754
26805
  id?: string | null;
26806
+ isPrimary?: boolean | null;
26755
26807
  user?: {
26756
26808
  __typename?: 'UserType';
26757
26809
  id?: string | null;
@@ -26823,6 +26875,7 @@ export type SupplierQuery = {
26823
26875
  owners?: Array<{
26824
26876
  __typename?: 'CompanyOwnersObject';
26825
26877
  id?: string | null;
26878
+ isPrimary?: boolean | null;
26826
26879
  user?: {
26827
26880
  __typename?: 'UserType';
26828
26881
  id?: string | null;
@@ -27092,6 +27145,7 @@ export type SupplierQuery = {
27092
27145
  companyOwners?: Array<{
27093
27146
  __typename?: 'CompanyOwnersObject';
27094
27147
  id?: string | null;
27148
+ isPrimary?: boolean | null;
27095
27149
  user?: {
27096
27150
  __typename?: 'UserType';
27097
27151
  id?: string | null;
@@ -27540,6 +27594,7 @@ export type SupplierListContactsQuery = {
27540
27594
  companyOwners?: Array<{
27541
27595
  __typename?: 'CompanyOwnersObject';
27542
27596
  id?: string | null;
27597
+ isPrimary?: boolean | null;
27543
27598
  user?: {
27544
27599
  __typename?: 'UserType';
27545
27600
  id?: string | null;
@@ -27626,6 +27681,7 @@ export type SupplierlistQuery = {
27626
27681
  owners?: Array<{
27627
27682
  __typename?: 'CompanyOwnersObject';
27628
27683
  id?: string | null;
27684
+ isPrimary?: boolean | null;
27629
27685
  user?: {
27630
27686
  __typename?: 'UserType';
27631
27687
  id?: string | null;
@@ -27895,6 +27951,7 @@ export type SupplierlistQuery = {
27895
27951
  companyOwners?: Array<{
27896
27952
  __typename?: 'CompanyOwnersObject';
27897
27953
  id?: string | null;
27954
+ isPrimary?: boolean | null;
27898
27955
  user?: {
27899
27956
  __typename?: 'UserType';
27900
27957
  id?: string | null;
@@ -28320,6 +28377,7 @@ export type SupplierlistListQuery = {
28320
28377
  owners?: Array<{
28321
28378
  __typename?: 'CompanyOwnersObject';
28322
28379
  id?: string | null;
28380
+ isPrimary?: boolean | null;
28323
28381
  user?: {
28324
28382
  __typename?: 'UserType';
28325
28383
  id?: string | null;
@@ -28589,6 +28647,7 @@ export type SupplierlistListQuery = {
28589
28647
  companyOwners?: Array<{
28590
28648
  __typename?: 'CompanyOwnersObject';
28591
28649
  id?: string | null;
28650
+ isPrimary?: boolean | null;
28592
28651
  user?: {
28593
28652
  __typename?: 'UserType';
28594
28653
  id?: string | null;
@@ -29053,6 +29112,7 @@ export type SuppliersQuery = {
29053
29112
  companyOwners?: Array<{
29054
29113
  __typename?: 'CompanyOwnersObject';
29055
29114
  id?: string | null;
29115
+ isPrimary?: boolean | null;
29056
29116
  user?: {
29057
29117
  __typename?: 'UserType';
29058
29118
  id?: string | null;
@@ -29124,6 +29184,7 @@ export type SuppliersQuery = {
29124
29184
  owners?: Array<{
29125
29185
  __typename?: 'CompanyOwnersObject';
29126
29186
  id?: string | null;
29187
+ isPrimary?: boolean | null;
29127
29188
  user?: {
29128
29189
  __typename?: 'UserType';
29129
29190
  id?: string | null;
@@ -29393,6 +29454,7 @@ export type SuppliersQuery = {
29393
29454
  companyOwners?: Array<{
29394
29455
  __typename?: 'CompanyOwnersObject';
29395
29456
  id?: string | null;
29457
+ isPrimary?: boolean | null;
29396
29458
  user?: {
29397
29459
  __typename?: 'UserType';
29398
29460
  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
  }
@@ -8142,6 +8152,7 @@ exports.ScheduleRfqDocument = (0, client_1.gql) `
8142
8152
  lastName
8143
8153
  picture
8144
8154
  }
8155
+ isPrimary
8145
8156
  }
8146
8157
  isProspect
8147
8158
  }
@@ -8381,6 +8392,7 @@ exports.SendEmailToContactDocument = (0, client_1.gql) `
8381
8392
  lastName
8382
8393
  picture
8383
8394
  }
8395
+ isPrimary
8384
8396
  }
8385
8397
  isProspect
8386
8398
  }
@@ -8944,6 +8956,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
8944
8956
  lastName
8945
8957
  picture
8946
8958
  }
8959
+ isPrimary
8947
8960
  }
8948
8961
  isProspect
8949
8962
  }
@@ -10614,6 +10627,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
10614
10627
  lastName
10615
10628
  picture
10616
10629
  }
10630
+ isPrimary
10617
10631
  }
10618
10632
  statuses {
10619
10633
  id
@@ -10862,6 +10876,7 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
10862
10876
  lastName
10863
10877
  picture
10864
10878
  }
10879
+ isPrimary
10865
10880
  }
10866
10881
  isProspect
10867
10882
  }
@@ -11540,6 +11555,7 @@ exports.UpdateContactDocument = (0, client_1.gql) `
11540
11555
  lastName
11541
11556
  picture
11542
11557
  }
11558
+ isPrimary
11543
11559
  }
11544
11560
  isProspect
11545
11561
  }
@@ -11723,6 +11739,7 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
11723
11739
  lastName
11724
11740
  picture
11725
11741
  }
11742
+ isPrimary
11726
11743
  }
11727
11744
  statuses {
11728
11745
  id
@@ -11971,6 +11988,7 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
11971
11988
  lastName
11972
11989
  picture
11973
11990
  }
11991
+ isPrimary
11974
11992
  }
11975
11993
  isProspect
11976
11994
  }
@@ -12426,6 +12444,7 @@ exports.UpdateRfqDocument = (0, client_1.gql) `
12426
12444
  lastName
12427
12445
  picture
12428
12446
  }
12447
+ isPrimary
12429
12448
  }
12430
12449
  isProspect
12431
12450
  }
@@ -12612,6 +12631,7 @@ exports.UpdateRfqlineitemDocument = (0, client_1.gql) `
12612
12631
  lastName
12613
12632
  picture
12614
12633
  }
12634
+ isPrimary
12615
12635
  }
12616
12636
  isProspect
12617
12637
  }
@@ -12815,6 +12835,7 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
12815
12835
  lastName
12816
12836
  picture
12817
12837
  }
12838
+ isPrimary
12818
12839
  }
12819
12840
  statuses {
12820
12841
  id
@@ -13063,6 +13084,7 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
13063
13084
  lastName
13064
13085
  picture
13065
13086
  }
13087
+ isPrimary
13066
13088
  }
13067
13089
  isProspect
13068
13090
  }
@@ -15418,6 +15440,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
15418
15440
  lastName
15419
15441
  picture
15420
15442
  }
15443
+ isPrimary
15421
15444
  }
15422
15445
  stepId
15423
15446
  stepOrder
@@ -15815,6 +15838,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
15815
15838
  lastName
15816
15839
  picture
15817
15840
  }
15841
+ isPrimary
15818
15842
  }
15819
15843
  isProspect
15820
15844
  }
@@ -15981,6 +16005,7 @@ exports.CampaignLogsDocument = (0, client_1.gql) `
15981
16005
  lastName
15982
16006
  picture
15983
16007
  }
16008
+ isPrimary
15984
16009
  }
15985
16010
  isProspect
15986
16011
  }
@@ -16383,6 +16408,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
16383
16408
  lastName
16384
16409
  picture
16385
16410
  }
16411
+ isPrimary
16386
16412
  }
16387
16413
  stepId
16388
16414
  stepOrder
@@ -17366,6 +17392,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
17366
17392
  lastName
17367
17393
  picture
17368
17394
  }
17395
+ isPrimary
17369
17396
  }
17370
17397
  statuses {
17371
17398
  id
@@ -17614,6 +17641,7 @@ exports.CompaniesDocument = (0, client_1.gql) `
17614
17641
  lastName
17615
17642
  picture
17616
17643
  }
17644
+ isPrimary
17617
17645
  }
17618
17646
  isProspect
17619
17647
  }
@@ -18036,6 +18064,7 @@ exports.CompanyDocument = (0, client_1.gql) `
18036
18064
  lastName
18037
18065
  picture
18038
18066
  }
18067
+ isPrimary
18039
18068
  }
18040
18069
  statuses {
18041
18070
  id
@@ -18284,6 +18313,7 @@ exports.CompanyDocument = (0, client_1.gql) `
18284
18313
  lastName
18285
18314
  picture
18286
18315
  }
18316
+ isPrimary
18287
18317
  }
18288
18318
  isProspect
18289
18319
  }
@@ -19208,6 +19238,7 @@ exports.CompanySearchDocument = (0, client_1.gql) `
19208
19238
  lastName
19209
19239
  picture
19210
19240
  }
19241
+ isPrimary
19211
19242
  }
19212
19243
  statuses {
19213
19244
  id
@@ -19456,6 +19487,7 @@ exports.CompanySearchDocument = (0, client_1.gql) `
19456
19487
  lastName
19457
19488
  picture
19458
19489
  }
19490
+ isPrimary
19459
19491
  }
19460
19492
  isProspect
19461
19493
  }
@@ -19910,6 +19942,7 @@ exports.ContactDocument = (0, client_1.gql) `
19910
19942
  lastName
19911
19943
  picture
19912
19944
  }
19945
+ isPrimary
19913
19946
  }
19914
19947
  isProspect
19915
19948
  }
@@ -20013,6 +20046,7 @@ exports.ContactsDocument = (0, client_1.gql) `
20013
20046
  lastName
20014
20047
  picture
20015
20048
  }
20049
+ isPrimary
20016
20050
  }
20017
20051
  isProspect
20018
20052
  }
@@ -20116,6 +20150,7 @@ exports.ContactsInSegmentDocument = (0, client_1.gql) `
20116
20150
  lastName
20117
20151
  picture
20118
20152
  }
20153
+ isPrimary
20119
20154
  }
20120
20155
  isProspect
20121
20156
  }
@@ -21274,6 +21309,7 @@ exports.MysupplierDocument = (0, client_1.gql) `
21274
21309
  lastName
21275
21310
  picture
21276
21311
  }
21312
+ isPrimary
21277
21313
  }
21278
21314
  statuses {
21279
21315
  id
@@ -21522,6 +21558,7 @@ exports.MysupplierDocument = (0, client_1.gql) `
21522
21558
  lastName
21523
21559
  picture
21524
21560
  }
21561
+ isPrimary
21525
21562
  }
21526
21563
  isProspect
21527
21564
  }
@@ -21933,6 +21970,7 @@ exports.MysupplierListDocument = (0, client_1.gql) `
21933
21970
  lastName
21934
21971
  picture
21935
21972
  }
21973
+ isPrimary
21936
21974
  }
21937
21975
  statuses {
21938
21976
  id
@@ -22181,6 +22219,7 @@ exports.MysupplierListDocument = (0, client_1.gql) `
22181
22219
  lastName
22182
22220
  picture
22183
22221
  }
22222
+ isPrimary
22184
22223
  }
22185
22224
  isProspect
22186
22225
  }
@@ -22893,6 +22932,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
22893
22932
  lastName
22894
22933
  picture
22895
22934
  }
22935
+ isPrimary
22896
22936
  }
22897
22937
  isProspect
22898
22938
  }
@@ -22934,6 +22974,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
22934
22974
  lastName
22935
22975
  picture
22936
22976
  }
22977
+ isPrimary
22937
22978
  }
22938
22979
  statuses {
22939
22980
  id
@@ -23182,6 +23223,7 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
23182
23223
  lastName
23183
23224
  picture
23184
23225
  }
23226
+ isPrimary
23185
23227
  }
23186
23228
  isProspect
23187
23229
  }
@@ -23719,6 +23761,7 @@ exports.RfqDocument = (0, client_1.gql) `
23719
23761
  lastName
23720
23762
  picture
23721
23763
  }
23764
+ isPrimary
23722
23765
  }
23723
23766
  isProspect
23724
23767
  }
@@ -23896,6 +23939,7 @@ exports.RfqListDocument = (0, client_1.gql) `
23896
23939
  lastName
23897
23940
  picture
23898
23941
  }
23942
+ isPrimary
23899
23943
  }
23900
23944
  isProspect
23901
23945
  }
@@ -24134,6 +24178,7 @@ exports.RfqlineitemDocument = (0, client_1.gql) `
24134
24178
  lastName
24135
24179
  picture
24136
24180
  }
24181
+ isPrimary
24137
24182
  }
24138
24183
  isProspect
24139
24184
  }
@@ -24311,6 +24356,7 @@ exports.RfqlineitemListDocument = (0, client_1.gql) `
24311
24356
  lastName
24312
24357
  picture
24313
24358
  }
24359
+ isPrimary
24314
24360
  }
24315
24361
  isProspect
24316
24362
  }
@@ -24686,6 +24732,7 @@ exports.SearchContactsDocument = (0, client_1.gql) `
24686
24732
  lastName
24687
24733
  picture
24688
24734
  }
24735
+ isPrimary
24689
24736
  }
24690
24737
  isProspect
24691
24738
  }
@@ -25005,6 +25052,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25005
25052
  lastName
25006
25053
  picture
25007
25054
  }
25055
+ isPrimary
25008
25056
  }
25009
25057
  isProspect
25010
25058
  }
@@ -25068,6 +25116,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25068
25116
  lastName
25069
25117
  picture
25070
25118
  }
25119
+ isPrimary
25071
25120
  }
25072
25121
  statuses {
25073
25122
  id
@@ -25316,6 +25365,7 @@ exports.SupplierDocument = (0, client_1.gql) `
25316
25365
  lastName
25317
25366
  picture
25318
25367
  }
25368
+ isPrimary
25319
25369
  }
25320
25370
  isProspect
25321
25371
  }
@@ -25759,6 +25809,7 @@ exports.SupplierListContactsDocument = (0, client_1.gql) `
25759
25809
  lastName
25760
25810
  picture
25761
25811
  }
25812
+ isPrimary
25762
25813
  }
25763
25814
  isProspect
25764
25815
  }
@@ -25881,6 +25932,7 @@ exports.SupplierlistDocument = (0, client_1.gql) `
25881
25932
  lastName
25882
25933
  picture
25883
25934
  }
25935
+ isPrimary
25884
25936
  }
25885
25937
  statuses {
25886
25938
  id
@@ -26129,6 +26181,7 @@ exports.SupplierlistDocument = (0, client_1.gql) `
26129
26181
  lastName
26130
26182
  picture
26131
26183
  }
26184
+ isPrimary
26132
26185
  }
26133
26186
  isProspect
26134
26187
  }
@@ -26540,6 +26593,7 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
26540
26593
  lastName
26541
26594
  picture
26542
26595
  }
26596
+ isPrimary
26543
26597
  }
26544
26598
  statuses {
26545
26599
  id
@@ -26788,6 +26842,7 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
26788
26842
  lastName
26789
26843
  picture
26790
26844
  }
26845
+ isPrimary
26791
26846
  }
26792
26847
  isProspect
26793
26848
  }
@@ -27234,6 +27289,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27234
27289
  lastName
27235
27290
  picture
27236
27291
  }
27292
+ isPrimary
27237
27293
  }
27238
27294
  isProspect
27239
27295
  }
@@ -27297,6 +27353,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27297
27353
  lastName
27298
27354
  picture
27299
27355
  }
27356
+ isPrimary
27300
27357
  }
27301
27358
  statuses {
27302
27359
  id
@@ -27545,6 +27602,7 @@ exports.SuppliersDocument = (0, client_1.gql) `
27545
27602
  lastName
27546
27603
  picture
27547
27604
  }
27605
+ isPrimary
27548
27606
  }
27549
27607
  isProspect
27550
27608
  }
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
  }
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
  }
@@ -9440,6 +9467,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
9440
9467
  lastName
9441
9468
  picture
9442
9469
  }
9470
+ isPrimary
9443
9471
  }
9444
9472
  statuses {
9445
9473
  id
@@ -9688,6 +9716,7 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
9688
9716
  lastName
9689
9717
  picture
9690
9718
  }
9719
+ isPrimary
9691
9720
  }
9692
9721
  isProspect
9693
9722
  }
@@ -10080,6 +10109,7 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
10080
10109
  lastName
10081
10110
  picture
10082
10111
  }
10112
+ isPrimary
10083
10113
  }
10084
10114
  statuses {
10085
10115
  id
@@ -10328,6 +10358,7 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
10328
10358
  lastName
10329
10359
  picture
10330
10360
  }
10361
+ isPrimary
10331
10362
  }
10332
10363
  isProspect
10333
10364
  }
@@ -10749,6 +10780,7 @@ query Contacts {
10749
10780
  lastName
10750
10781
  picture
10751
10782
  }
10783
+ isPrimary
10752
10784
  }
10753
10785
  isProspect
10754
10786
  }
@@ -10824,6 +10856,7 @@ query SearchContacts($filters: ContactFilterInput, $pagination: PaginationInput,
10824
10856
  lastName
10825
10857
  picture
10826
10858
  }
10859
+ isPrimary
10827
10860
  }
10828
10861
  isProspect
10829
10862
  }
@@ -10877,6 +10910,7 @@ query Company($id: String) {
10877
10910
  lastName
10878
10911
  picture
10879
10912
  }
10913
+ isPrimary
10880
10914
  }
10881
10915
  statuses {
10882
10916
  id
@@ -11125,6 +11159,7 @@ query Company($id: String) {
11125
11159
  lastName
11126
11160
  picture
11127
11161
  }
11162
+ isPrimary
11128
11163
  }
11129
11164
  isProspect
11130
11165
  }
@@ -11536,6 +11571,7 @@ query Contact($id: String) {
11536
11571
  lastName
11537
11572
  picture
11538
11573
  }
11574
+ isPrimary
11539
11575
  }
11540
11576
  isProspect
11541
11577
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",