cf-service-sdk 0.0.90 → 0.0.91

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.
@@ -1023,6 +1023,8 @@ export type CombinedCampaignLogObject = {
1023
1023
  outcome?: Maybe<Scalars['String']['output']>;
1024
1024
  productsOfInterest?: Maybe<Scalars['GenericScalar']['output']>;
1025
1025
  scheduledFor?: Maybe<Scalars['DateTime']['output']>;
1026
+ /** Actual subject from sent email (populated from ContactLog) */
1027
+ sentSubject?: Maybe<Scalars['String']['output']>;
1026
1028
  startedAt?: Maybe<Scalars['DateTime']['output']>;
1027
1029
  status?: Maybe<Scalars['String']['output']>;
1028
1030
  step?: Maybe<CombinedCampaignStepObject>;
@@ -10782,6 +10784,7 @@ export type SendManualEmailMutation = {
10782
10784
  taskId?: string | null;
10783
10785
  draftSubject?: string | null;
10784
10786
  draftBody?: string | null;
10787
+ sentSubject?: string | null;
10785
10788
  createdAt?: any | null;
10786
10789
  updatedAt?: any | null;
10787
10790
  contactName?: string | null;
@@ -11863,6 +11866,7 @@ export type UpdateCombinedCampaignLogMutation = {
11863
11866
  taskId?: string | null;
11864
11867
  draftSubject?: string | null;
11865
11868
  draftBody?: string | null;
11869
+ sentSubject?: string | null;
11866
11870
  createdAt?: any | null;
11867
11871
  updatedAt?: any | null;
11868
11872
  contactName?: string | null;
@@ -15939,6 +15943,7 @@ export type CampaignContactsQuery = {
15939
15943
  taskId?: string | null;
15940
15944
  draftSubject?: string | null;
15941
15945
  draftBody?: string | null;
15946
+ sentSubject?: string | null;
15942
15947
  createdAt?: any | null;
15943
15948
  updatedAt?: any | null;
15944
15949
  contactName?: string | null;
@@ -16766,6 +16771,7 @@ export type CombinedCampaignContactsQuery = {
16766
16771
  taskId?: string | null;
16767
16772
  draftSubject?: string | null;
16768
16773
  draftBody?: string | null;
16774
+ sentSubject?: string | null;
16769
16775
  createdAt?: any | null;
16770
16776
  updatedAt?: any | null;
16771
16777
  contactName?: string | null;
@@ -17054,6 +17060,7 @@ export type CombinedCampaignLogsQuery = {
17054
17060
  taskId?: string | null;
17055
17061
  draftSubject?: string | null;
17056
17062
  draftBody?: string | null;
17063
+ sentSubject?: string | null;
17057
17064
  createdAt?: any | null;
17058
17065
  updatedAt?: any | null;
17059
17066
  contactName?: string | null;
@@ -7817,6 +7817,7 @@ exports.SendManualEmailDocument = (0, client_1.gql) `
7817
7817
  }
7818
7818
  draftSubject
7819
7819
  draftBody
7820
+ sentSubject
7820
7821
  createdAt
7821
7822
  updatedAt
7822
7823
  contactName
@@ -9137,6 +9138,7 @@ exports.UpdateCombinedCampaignLogDocument = (0, client_1.gql) `
9137
9138
  }
9138
9139
  draftSubject
9139
9140
  draftBody
9141
+ sentSubject
9140
9142
  createdAt
9141
9143
  updatedAt
9142
9144
  contactName
@@ -13511,6 +13513,7 @@ exports.CampaignContactsDocument = (0, client_1.gql) `
13511
13513
  }
13512
13514
  draftSubject
13513
13515
  draftBody
13516
+ sentSubject
13514
13517
  createdAt
13515
13518
  updatedAt
13516
13519
  contactName
@@ -14409,6 +14412,7 @@ exports.CombinedCampaignContactsDocument = (0, client_1.gql) `
14409
14412
  }
14410
14413
  draftSubject
14411
14414
  draftBody
14415
+ sentSubject
14412
14416
  createdAt
14413
14417
  updatedAt
14414
14418
  contactName
@@ -14713,6 +14717,7 @@ exports.CombinedCampaignLogsDocument = (0, client_1.gql) `
14713
14717
  }
14714
14718
  draftSubject
14715
14719
  draftBody
14720
+ sentSubject
14716
14721
  createdAt
14717
14722
  updatedAt
14718
14723
  contactName
package/dist/mutations.js CHANGED
@@ -4228,6 +4228,7 @@ mutation UpdateCombinedCampaignLog($id: ID!, $input: UpdateCombinedCampaignLogIn
4228
4228
  }
4229
4229
  draftSubject
4230
4230
  draftBody
4231
+ sentSubject
4231
4232
  createdAt
4232
4233
  updatedAt
4233
4234
  contactName
@@ -4494,6 +4495,7 @@ mutation SendManualEmail($bcc: [String], $body: String!, $cc: [String], $logId:
4494
4495
  }
4495
4496
  draftSubject
4496
4497
  draftBody
4498
+ sentSubject
4497
4499
  createdAt
4498
4500
  updatedAt
4499
4501
  contactName
package/dist/queries.js CHANGED
@@ -4973,6 +4973,7 @@ query CombinedCampaignLogs($campaignId: ID!, $filters: CombinedCampaignFilterInp
4973
4973
  }
4974
4974
  draftSubject
4975
4975
  draftBody
4976
+ sentSubject
4976
4977
  createdAt
4977
4978
  updatedAt
4978
4979
  contactName
@@ -5294,6 +5295,7 @@ query CombinedCampaignContacts($campaignUuid: ID!, $activityType: String, $page:
5294
5295
  }
5295
5296
  draftSubject
5296
5297
  draftBody
5298
+ sentSubject
5297
5299
  createdAt
5298
5300
  updatedAt
5299
5301
  contactName
@@ -8329,6 +8331,7 @@ query CampaignContacts($campaignUuid: ID!, $page: Int, $pageSize: Int) {
8329
8331
  }
8330
8332
  draftSubject
8331
8333
  draftBody
8334
+ sentSubject
8332
8335
  createdAt
8333
8336
  updatedAt
8334
8337
  contactName
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.90",
3
+ "version": "0.0.91",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",