cf-service-sdk 0.0.73 → 0.0.74

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.
@@ -3885,13 +3885,29 @@ export type SubmitFeedback = {
3885
3885
  message?: Maybe<Scalars['String']['output']>;
3886
3886
  success?: Maybe<Scalars['Boolean']['output']>;
3887
3887
  };
3888
+ export type SupplierContactObject = {
3889
+ __typename?: 'SupplierContactObject';
3890
+ email: Scalars['String']['output'];
3891
+ firstName: Scalars['String']['output'];
3892
+ id: Scalars['ID']['output'];
3893
+ lastName: Scalars['String']['output'];
3894
+ linkedinUrl: Scalars['String']['output'];
3895
+ personalEmail: Scalars['String']['output'];
3896
+ personalEmail2: Scalars['String']['output'];
3897
+ phone: Scalars['String']['output'];
3898
+ phone2: Scalars['String']['output'];
3899
+ phone3: Scalars['String']['output'];
3900
+ title: Scalars['String']['output'];
3901
+ workEmail: Scalars['String']['output'];
3902
+ workEmail2: Scalars['String']['output'];
3903
+ };
3888
3904
  export type SupplierListInput = {
3889
3905
  description?: InputMaybe<Scalars['String']['input']>;
3890
3906
  name: Scalars['String']['input'];
3891
3907
  };
3892
3908
  export type SupplierObject = {
3893
3909
  __typename?: 'SupplierObject';
3894
- contacts?: Maybe<Array<Maybe<ContactObject>>>;
3910
+ contacts?: Maybe<Array<Maybe<SupplierContactObject>>>;
3895
3911
  id: Scalars['ID']['output'];
3896
3912
  name: Scalars['String']['output'];
3897
3913
  productsSold?: Maybe<Array<Maybe<SupplierProductObject>>>;
@@ -19647,83 +19663,20 @@ export type SupplierQuery = {
19647
19663
  id: string;
19648
19664
  name: string;
19649
19665
  contacts?: Array<{
19650
- __typename?: 'ContactObject';
19651
- id?: string | null;
19652
- firstName?: string | null;
19653
- lastName?: string | null;
19654
- email?: string | null;
19655
- workEmail?: string | null;
19656
- workEmail2?: string | null;
19657
- personalEmail?: string | null;
19658
- personalEmail2?: string | null;
19659
- phone?: string | null;
19660
- phone2?: string | null;
19661
- phone3?: string | null;
19662
- title?: string | null;
19663
- linkedinUrl?: string | null;
19664
- isPrimary?: boolean | null;
19665
- isCustomer?: boolean | null;
19666
- notes?: string | null;
19667
- lastContactedAt?: any | null;
19668
- ownedByUser?: boolean | null;
19669
- companyName?: string | null;
19670
- companyId?: string | null;
19671
- isProspect?: boolean | null;
19672
- lastContactedBy?: {
19673
- __typename?: 'UserType';
19674
- id?: string | null;
19675
- email?: string | null;
19676
- firstName?: string | null;
19677
- lastName?: string | null;
19678
- picture?: string | null;
19679
- } | null;
19680
- lastContactedVia?: {
19681
- __typename?: 'LastContactedViaType';
19682
- actionType?: string | null;
19683
- actionId?: string | null;
19684
- campaignName?: string | null;
19685
- campaignId?: string | null;
19686
- callCampaignId?: string | null;
19687
- combinedCampaignId?: string | null;
19688
- stepType?: string | null;
19689
- stepOrder?: number | null;
19690
- noteType?: string | null;
19691
- noteId?: string | null;
19692
- } | null;
19693
- contactLog?: Array<{
19694
- __typename?: 'ContactLogObject';
19695
- id?: string | null;
19696
- sentAt?: any | null;
19697
- openedAt?: any | null;
19698
- clickedAt?: any | null;
19699
- bouncedAt?: any | null;
19700
- status?: string | null;
19701
- } | null> | null;
19702
- inSegments?: Array<{
19703
- __typename?: 'SegmentIdObject';
19704
- id?: string | null;
19705
- name?: string | null;
19706
- state?: string | null;
19707
- industry?: string | null;
19708
- } | null> | null;
19709
- stats?: {
19710
- __typename?: 'ContactStatsType';
19711
- totalOpened?: number | null;
19712
- totalReplied?: number | null;
19713
- totalBounced?: number | null;
19714
- } | null;
19715
- companyOwners?: Array<{
19716
- __typename?: 'CompanyOwnersObject';
19717
- id?: string | null;
19718
- user?: {
19719
- __typename?: 'UserType';
19720
- id?: string | null;
19721
- email?: string | null;
19722
- firstName?: string | null;
19723
- lastName?: string | null;
19724
- picture?: string | null;
19725
- } | null;
19726
- } | null> | null;
19666
+ __typename?: 'SupplierContactObject';
19667
+ id: string;
19668
+ firstName: string;
19669
+ lastName: string;
19670
+ email: string;
19671
+ workEmail: string;
19672
+ workEmail2: string;
19673
+ personalEmail: string;
19674
+ personalEmail2: string;
19675
+ phone: string;
19676
+ phone2: string;
19677
+ phone3: string;
19678
+ title: string;
19679
+ linkedinUrl: string;
19727
19680
  } | null> | null;
19728
19681
  productsSold?: Array<{
19729
19682
  __typename?: 'SupplierProductObject';
@@ -20614,83 +20567,20 @@ export type SuppliersQuery = {
20614
20567
  id: string;
20615
20568
  name: string;
20616
20569
  contacts?: Array<{
20617
- __typename?: 'ContactObject';
20618
- id?: string | null;
20619
- firstName?: string | null;
20620
- lastName?: string | null;
20621
- email?: string | null;
20622
- workEmail?: string | null;
20623
- workEmail2?: string | null;
20624
- personalEmail?: string | null;
20625
- personalEmail2?: string | null;
20626
- phone?: string | null;
20627
- phone2?: string | null;
20628
- phone3?: string | null;
20629
- title?: string | null;
20630
- linkedinUrl?: string | null;
20631
- isPrimary?: boolean | null;
20632
- isCustomer?: boolean | null;
20633
- notes?: string | null;
20634
- lastContactedAt?: any | null;
20635
- ownedByUser?: boolean | null;
20636
- companyName?: string | null;
20637
- companyId?: string | null;
20638
- isProspect?: boolean | null;
20639
- lastContactedBy?: {
20640
- __typename?: 'UserType';
20641
- id?: string | null;
20642
- email?: string | null;
20643
- firstName?: string | null;
20644
- lastName?: string | null;
20645
- picture?: string | null;
20646
- } | null;
20647
- lastContactedVia?: {
20648
- __typename?: 'LastContactedViaType';
20649
- actionType?: string | null;
20650
- actionId?: string | null;
20651
- campaignName?: string | null;
20652
- campaignId?: string | null;
20653
- callCampaignId?: string | null;
20654
- combinedCampaignId?: string | null;
20655
- stepType?: string | null;
20656
- stepOrder?: number | null;
20657
- noteType?: string | null;
20658
- noteId?: string | null;
20659
- } | null;
20660
- contactLog?: Array<{
20661
- __typename?: 'ContactLogObject';
20662
- id?: string | null;
20663
- sentAt?: any | null;
20664
- openedAt?: any | null;
20665
- clickedAt?: any | null;
20666
- bouncedAt?: any | null;
20667
- status?: string | null;
20668
- } | null> | null;
20669
- inSegments?: Array<{
20670
- __typename?: 'SegmentIdObject';
20671
- id?: string | null;
20672
- name?: string | null;
20673
- state?: string | null;
20674
- industry?: string | null;
20675
- } | null> | null;
20676
- stats?: {
20677
- __typename?: 'ContactStatsType';
20678
- totalOpened?: number | null;
20679
- totalReplied?: number | null;
20680
- totalBounced?: number | null;
20681
- } | null;
20682
- companyOwners?: Array<{
20683
- __typename?: 'CompanyOwnersObject';
20684
- id?: string | null;
20685
- user?: {
20686
- __typename?: 'UserType';
20687
- id?: string | null;
20688
- email?: string | null;
20689
- firstName?: string | null;
20690
- lastName?: string | null;
20691
- picture?: string | null;
20692
- } | null;
20693
- } | null> | null;
20570
+ __typename?: 'SupplierContactObject';
20571
+ id: string;
20572
+ firstName: string;
20573
+ lastName: string;
20574
+ email: string;
20575
+ workEmail: string;
20576
+ workEmail2: string;
20577
+ personalEmail: string;
20578
+ personalEmail2: string;
20579
+ phone: string;
20580
+ phone2: string;
20581
+ phone3: string;
20582
+ title: string;
20583
+ linkedinUrl: string;
20694
20584
  } | null> | null;
20695
20585
  productsSold?: Array<{
20696
20586
  __typename?: 'SupplierProductObject';
@@ -18283,62 +18283,6 @@ exports.SupplierDocument = (0, client_1.gql) `
18283
18283
  phone3
18284
18284
  title
18285
18285
  linkedinUrl
18286
- isPrimary
18287
- isCustomer
18288
- notes
18289
- lastContactedAt
18290
- lastContactedBy {
18291
- id
18292
- email
18293
- firstName
18294
- lastName
18295
- picture
18296
- }
18297
- lastContactedVia {
18298
- actionType
18299
- actionId
18300
- campaignName
18301
- campaignId
18302
- callCampaignId
18303
- combinedCampaignId
18304
- stepType
18305
- stepOrder
18306
- noteType
18307
- noteId
18308
- }
18309
- ownedByUser
18310
- contactLog {
18311
- id
18312
- sentAt
18313
- openedAt
18314
- clickedAt
18315
- bouncedAt
18316
- status
18317
- }
18318
- inSegments {
18319
- id
18320
- name
18321
- state
18322
- industry
18323
- }
18324
- companyName
18325
- companyId
18326
- stats {
18327
- totalOpened
18328
- totalReplied
18329
- totalBounced
18330
- }
18331
- companyOwners {
18332
- id
18333
- user {
18334
- id
18335
- email
18336
- firstName
18337
- lastName
18338
- picture
18339
- }
18340
- }
18341
- isProspect
18342
18286
  }
18343
18287
  productsSold {
18344
18288
  id
@@ -19293,62 +19237,6 @@ exports.SuppliersDocument = (0, client_1.gql) `
19293
19237
  phone3
19294
19238
  title
19295
19239
  linkedinUrl
19296
- isPrimary
19297
- isCustomer
19298
- notes
19299
- lastContactedAt
19300
- lastContactedBy {
19301
- id
19302
- email
19303
- firstName
19304
- lastName
19305
- picture
19306
- }
19307
- lastContactedVia {
19308
- actionType
19309
- actionId
19310
- campaignName
19311
- campaignId
19312
- callCampaignId
19313
- combinedCampaignId
19314
- stepType
19315
- stepOrder
19316
- noteType
19317
- noteId
19318
- }
19319
- ownedByUser
19320
- contactLog {
19321
- id
19322
- sentAt
19323
- openedAt
19324
- clickedAt
19325
- bouncedAt
19326
- status
19327
- }
19328
- inSegments {
19329
- id
19330
- name
19331
- state
19332
- industry
19333
- }
19334
- companyName
19335
- companyId
19336
- stats {
19337
- totalOpened
19338
- totalReplied
19339
- totalBounced
19340
- }
19341
- companyOwners {
19342
- id
19343
- user {
19344
- id
19345
- email
19346
- firstName
19347
- lastName
19348
- picture
19349
- }
19350
- }
19351
- isProspect
19352
19240
  }
19353
19241
  productsSold {
19354
19242
  id
package/dist/queries.js CHANGED
@@ -1509,62 +1509,6 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
1509
1509
  phone3
1510
1510
  title
1511
1511
  linkedinUrl
1512
- isPrimary
1513
- isCustomer
1514
- notes
1515
- lastContactedAt
1516
- lastContactedBy {
1517
- id
1518
- email
1519
- firstName
1520
- lastName
1521
- picture
1522
- }
1523
- lastContactedVia {
1524
- actionType
1525
- actionId
1526
- campaignName
1527
- campaignId
1528
- callCampaignId
1529
- combinedCampaignId
1530
- stepType
1531
- stepOrder
1532
- noteType
1533
- noteId
1534
- }
1535
- ownedByUser
1536
- contactLog {
1537
- id
1538
- sentAt
1539
- openedAt
1540
- clickedAt
1541
- bouncedAt
1542
- status
1543
- }
1544
- inSegments {
1545
- id
1546
- name
1547
- state
1548
- industry
1549
- }
1550
- companyName
1551
- companyId
1552
- stats {
1553
- totalOpened
1554
- totalReplied
1555
- totalBounced
1556
- }
1557
- companyOwners {
1558
- id
1559
- user {
1560
- id
1561
- email
1562
- firstName
1563
- lastName
1564
- picture
1565
- }
1566
- }
1567
- isProspect
1568
1512
  }
1569
1513
  productsSold {
1570
1514
  id
@@ -2193,62 +2137,6 @@ query Supplier($id: ID!) {
2193
2137
  phone3
2194
2138
  title
2195
2139
  linkedinUrl
2196
- isPrimary
2197
- isCustomer
2198
- notes
2199
- lastContactedAt
2200
- lastContactedBy {
2201
- id
2202
- email
2203
- firstName
2204
- lastName
2205
- picture
2206
- }
2207
- lastContactedVia {
2208
- actionType
2209
- actionId
2210
- campaignName
2211
- campaignId
2212
- callCampaignId
2213
- combinedCampaignId
2214
- stepType
2215
- stepOrder
2216
- noteType
2217
- noteId
2218
- }
2219
- ownedByUser
2220
- contactLog {
2221
- id
2222
- sentAt
2223
- openedAt
2224
- clickedAt
2225
- bouncedAt
2226
- status
2227
- }
2228
- inSegments {
2229
- id
2230
- name
2231
- state
2232
- industry
2233
- }
2234
- companyName
2235
- companyId
2236
- stats {
2237
- totalOpened
2238
- totalReplied
2239
- totalBounced
2240
- }
2241
- companyOwners {
2242
- id
2243
- user {
2244
- id
2245
- email
2246
- firstName
2247
- lastName
2248
- picture
2249
- }
2250
- }
2251
- isProspect
2252
2140
  }
2253
2141
  productsSold {
2254
2142
  id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.73",
3
+ "version": "0.0.74",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",