cf-service-sdk 0.1.35 → 0.1.37
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 */
|
|
@@ -1266,6 +1268,8 @@ export type CompanyFilterInput = {
|
|
|
1266
1268
|
metalType?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1267
1269
|
/** Override dynamic score ratio (0.0-1.0) for text relevance threshold (admin only) */
|
|
1268
1270
|
minFilterSearchScore?: InputMaybe<Scalars['Float']['input']>;
|
|
1271
|
+
/** Filter to show only companies that have at least one contact saved in any of the user's or their account's active segments */
|
|
1272
|
+
onlySavedContacts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1269
1273
|
/** Filter by owner user ID(s) */
|
|
1270
1274
|
owners?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1271
1275
|
/** Filter by product category ID(s) */
|
|
@@ -1733,6 +1737,8 @@ export type ContactFilterInput = {
|
|
|
1733
1737
|
contactIdsToInclude?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
1734
1738
|
/** Filter by whether the contact's company is a customer */
|
|
1735
1739
|
isCustomer?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1740
|
+
/** Filter to show only contacts saved in any of the user's or their account's active segments */
|
|
1741
|
+
onlySavedContacts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1736
1742
|
/** Search in contact name, email, title, and company name */
|
|
1737
1743
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
1738
1744
|
/** Filter by segment IDs (contacts must be in these segments) */
|
|
@@ -18310,6 +18316,7 @@ export type CampaignContactsQuery = {
|
|
|
18310
18316
|
populatedSubject?: string | null;
|
|
18311
18317
|
populatedBody?: string | null;
|
|
18312
18318
|
replyCount?: number | null;
|
|
18319
|
+
isRemoved?: boolean | null;
|
|
18313
18320
|
lastContactedBy?: {
|
|
18314
18321
|
__typename?: 'UserType';
|
|
18315
18322
|
id?: string | null;
|
|
@@ -19207,6 +19214,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
19207
19214
|
populatedSubject?: string | null;
|
|
19208
19215
|
populatedBody?: string | null;
|
|
19209
19216
|
replyCount?: number | null;
|
|
19217
|
+
isRemoved?: boolean | null;
|
|
19210
19218
|
lastContactedBy?: {
|
|
19211
19219
|
__typename?: 'UserType';
|
|
19212
19220
|
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
|