cf-service-sdk 0.1.48 → 0.1.49
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.
|
@@ -757,6 +757,8 @@ export type CampaignContactItemType = {
|
|
|
757
757
|
populatedSubject?: Maybe<Scalars['String']['output']>;
|
|
758
758
|
/** Number of replies from this contact in this campaign */
|
|
759
759
|
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
760
|
+
/** Per-row send eligibility used by the campaign review screen. One of SENDABLE, DUPLICATE, NO_EMAIL, EXCLUDED. */
|
|
761
|
+
sendStatus?: Maybe<Scalars['String']['output']>;
|
|
760
762
|
/** Step ID for combined campaign contacts */
|
|
761
763
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
762
764
|
/** Step order for combined campaign contacts */
|
|
@@ -18991,6 +18993,7 @@ export type CampaignContactsQuery = {
|
|
|
18991
18993
|
populatedBody?: string | null;
|
|
18992
18994
|
replyCount?: number | null;
|
|
18993
18995
|
isRemoved?: boolean | null;
|
|
18996
|
+
sendStatus?: string | null;
|
|
18994
18997
|
lastContactedBy?: {
|
|
18995
18998
|
__typename?: 'UserType';
|
|
18996
18999
|
id?: string | null;
|
|
@@ -19903,6 +19906,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
19903
19906
|
populatedBody?: string | null;
|
|
19904
19907
|
replyCount?: number | null;
|
|
19905
19908
|
isRemoved?: boolean | null;
|
|
19909
|
+
sendStatus?: string | null;
|
|
19906
19910
|
lastContactedBy?: {
|
|
19907
19911
|
__typename?: 'UserType';
|
|
19908
19912
|
id?: string | null;
|
|
@@ -16200,6 +16200,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
|
|
|
16200
16200
|
populatedBody
|
|
16201
16201
|
replyCount
|
|
16202
16202
|
isRemoved
|
|
16203
|
+
sendStatus
|
|
16203
16204
|
}
|
|
16204
16205
|
pagination {
|
|
16205
16206
|
currentPage
|
|
@@ -17183,6 +17184,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
|
|
|
17183
17184
|
populatedBody
|
|
17184
17185
|
replyCount
|
|
17185
17186
|
isRemoved
|
|
17187
|
+
sendStatus
|
|
17186
17188
|
}
|
|
17187
17189
|
pagination {
|
|
17188
17190
|
currentPage
|
package/dist/queries.js
CHANGED
|
@@ -5823,6 +5823,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
|
|
|
5823
5823
|
populatedBody
|
|
5824
5824
|
replyCount
|
|
5825
5825
|
isRemoved
|
|
5826
|
+
sendStatus
|
|
5826
5827
|
}
|
|
5827
5828
|
pagination {
|
|
5828
5829
|
currentPage
|
|
@@ -8965,6 +8966,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
|
|
|
8965
8966
|
populatedBody
|
|
8966
8967
|
replyCount
|
|
8967
8968
|
isRemoved
|
|
8969
|
+
sendStatus
|
|
8968
8970
|
}
|
|
8969
8971
|
pagination {
|
|
8970
8972
|
currentPage
|