cf-service-sdk-dharani 0.0.65 → 0.0.66

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.
@@ -582,6 +582,7 @@ export type CampaignContactItemType = {
582
582
  companyId?: Maybe<Scalars['ID']['output']>;
583
583
  /** Company name of the contact */
584
584
  companyName?: Maybe<Scalars['String']['output']>;
585
+ companyOwners?: Maybe<Array<Maybe<CompanyOwnersObject>>>;
585
586
  /** State of the contact */
586
587
  companyState?: Maybe<Scalars['String']['output']>;
587
588
  /** ID of the contact */
@@ -8602,6 +8603,18 @@ export type CampaignContactsQuery = {
8602
8603
  noteType?: string | null;
8603
8604
  noteId?: string | null;
8604
8605
  } | null;
8606
+ companyOwners?: Array<{
8607
+ __typename?: 'CompanyOwnersObject';
8608
+ id?: string | null;
8609
+ user?: {
8610
+ __typename?: 'UserType';
8611
+ id?: string | null;
8612
+ email?: string | null;
8613
+ firstName?: string | null;
8614
+ lastName?: string | null;
8615
+ picture?: string | null;
8616
+ } | null;
8617
+ } | null> | null;
8605
8618
  } | null> | null;
8606
8619
  pagination?: {
8607
8620
  __typename?: 'PaginationInfo';
@@ -7317,6 +7317,16 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
7317
7317
  noteType
7318
7318
  noteId
7319
7319
  }
7320
+ companyOwners {
7321
+ id
7322
+ user {
7323
+ id
7324
+ email
7325
+ firstName
7326
+ lastName
7327
+ picture
7328
+ }
7329
+ }
7320
7330
  }
7321
7331
  pagination {
7322
7332
  currentPage
package/dist/queries.js CHANGED
@@ -2729,6 +2729,16 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
2729
2729
  noteType
2730
2730
  noteId
2731
2731
  }
2732
+ companyOwners {
2733
+ id
2734
+ user {
2735
+ id
2736
+ email
2737
+ firstName
2738
+ lastName
2739
+ picture
2740
+ }
2741
+ }
2732
2742
  }
2733
2743
  pagination {
2734
2744
  currentPage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk-dharani",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",