cf-service-sdk 0.1.35 → 0.1.36

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.
@@ -739,6 +739,8 @@ export type CampaignContactItemType = {
739
739
  isCustomer?: Maybe<Scalars['Boolean']['output']>;
740
740
  /** Whether the contact is a prospect */
741
741
  isProspect?: Maybe<Scalars['Boolean']['output']>;
742
+ /** Whether this contact has been removed from the campaign */
743
+ isRemoved?: Maybe<Scalars['Boolean']['output']>;
742
744
  /** When the contact was last contacted */
743
745
  lastContactedAt?: Maybe<Scalars['DateTime']['output']>;
744
746
  /** User who last contacted this contact */
@@ -18310,6 +18312,7 @@ export type CampaignContactsQuery = {
18310
18312
  populatedSubject?: string | null;
18311
18313
  populatedBody?: string | null;
18312
18314
  replyCount?: number | null;
18315
+ isRemoved?: boolean | null;
18313
18316
  lastContactedBy?: {
18314
18317
  __typename?: 'UserType';
18315
18318
  id?: string | null;
@@ -19207,6 +19210,7 @@ export type CombinedCampaignContactsQuery = {
19207
19210
  populatedSubject?: string | null;
19208
19211
  populatedBody?: string | null;
19209
19212
  replyCount?: number | null;
19213
+ isRemoved?: boolean | null;
19210
19214
  lastContactedBy?: {
19211
19215
  __typename?: 'UserType';
19212
19216
  id?: string | null;
@@ -15758,6 +15758,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
15758
15758
  populatedSubject
15759
15759
  populatedBody
15760
15760
  replyCount
15761
+ isRemoved
15761
15762
  }
15762
15763
  pagination {
15763
15764
  currentPage
@@ -16726,6 +16727,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
16726
16727
  populatedSubject
16727
16728
  populatedBody
16728
16729
  replyCount
16730
+ isRemoved
16729
16731
  }
16730
16732
  pagination {
16731
16733
  currentPage
package/dist/queries.js CHANGED
@@ -5649,6 +5649,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
5649
5649
  populatedSubject
5650
5650
  populatedBody
5651
5651
  replyCount
5652
+ isRemoved
5652
5653
  }
5653
5654
  pagination {
5654
5655
  currentPage
@@ -8728,6 +8729,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
8728
8729
  populatedSubject
8729
8730
  populatedBody
8730
8731
  replyCount
8732
+ isRemoved
8731
8733
  }
8732
8734
  pagination {
8733
8735
  currentPage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",