cf-service-sdk 0.1.24 → 0.1.25
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
|
phone?: Maybe<Scalars['String']['output']>;
|
|
740
740
|
populatedBody?: Maybe<Scalars['String']['output']>;
|
|
741
741
|
populatedSubject?: Maybe<Scalars['String']['output']>;
|
|
742
|
+
/** Number of replies from this contact in this campaign */
|
|
743
|
+
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
742
744
|
/** Step ID for combined campaign contacts */
|
|
743
745
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
744
746
|
/** Step order for combined campaign contacts */
|
|
@@ -18110,6 +18112,7 @@ export type CampaignContactsQuery = {
|
|
|
18110
18112
|
stepOrder?: number | null;
|
|
18111
18113
|
populatedSubject?: string | null;
|
|
18112
18114
|
populatedBody?: string | null;
|
|
18115
|
+
replyCount?: number | null;
|
|
18113
18116
|
lastContactedBy?: {
|
|
18114
18117
|
__typename?: 'UserType';
|
|
18115
18118
|
id?: string | null;
|
|
@@ -19003,6 +19006,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
19003
19006
|
stepOrder?: number | null;
|
|
19004
19007
|
populatedSubject?: string | null;
|
|
19005
19008
|
populatedBody?: string | null;
|
|
19009
|
+
replyCount?: number | null;
|
|
19006
19010
|
lastContactedBy?: {
|
|
19007
19011
|
__typename?: 'UserType';
|
|
19008
19012
|
id?: string | null;
|
|
@@ -15638,6 +15638,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
|
|
|
15638
15638
|
}
|
|
15639
15639
|
populatedSubject
|
|
15640
15640
|
populatedBody
|
|
15641
|
+
replyCount
|
|
15641
15642
|
}
|
|
15642
15643
|
pagination {
|
|
15643
15644
|
currentPage
|
|
@@ -16602,6 +16603,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
|
|
|
16602
16603
|
}
|
|
16603
16604
|
populatedSubject
|
|
16604
16605
|
populatedBody
|
|
16606
|
+
replyCount
|
|
16605
16607
|
}
|
|
16606
16608
|
pagination {
|
|
16607
16609
|
currentPage
|
package/dist/queries.js
CHANGED
|
@@ -5628,6 +5628,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
|
|
|
5628
5628
|
}
|
|
5629
5629
|
populatedSubject
|
|
5630
5630
|
populatedBody
|
|
5631
|
+
replyCount
|
|
5631
5632
|
}
|
|
5632
5633
|
pagination {
|
|
5633
5634
|
currentPage
|
|
@@ -8699,6 +8700,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
|
|
|
8699
8700
|
}
|
|
8700
8701
|
populatedSubject
|
|
8701
8702
|
populatedBody
|
|
8703
|
+
replyCount
|
|
8702
8704
|
}
|
|
8703
8705
|
pagination {
|
|
8704
8706
|
currentPage
|