cf-service-sdk 0.0.89 → 0.0.90

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.
@@ -2426,6 +2426,8 @@ export type MailLogObject = {
2426
2426
  sentAt?: Maybe<Scalars['DateTime']['output']>;
2427
2427
  /** Email preview snippet */
2428
2428
  snippet?: Maybe<Scalars['String']['output']>;
2429
+ /** Source of email: 'mail_log' for external emails, 'contact_log' for campaign/CRM emails */
2430
+ source?: Maybe<Scalars['String']['output']>;
2429
2431
  /** Status of email sending process (PENDING, SENT, FAILED) */
2430
2432
  status?: Maybe<Scalars['String']['output']>;
2431
2433
  /** Email subject line */
@@ -10735,6 +10737,7 @@ export type SendEmailToEmailThreadMutation = {
10735
10737
  contactEmail?: string | null;
10736
10738
  createdAt?: any | null;
10737
10739
  updatedAt?: any | null;
10740
+ source?: string | null;
10738
10741
  } | null;
10739
10742
  } | null;
10740
10743
  };
@@ -20392,6 +20395,7 @@ export type EmailThreadQuery = {
20392
20395
  contactEmail?: string | null;
20393
20396
  createdAt?: any | null;
20394
20397
  updatedAt?: any | null;
20398
+ source?: string | null;
20395
20399
  } | null> | null;
20396
20400
  } | null;
20397
20401
  };
@@ -20439,6 +20443,7 @@ export type EmailThreadsByCompanyQuery = {
20439
20443
  contactEmail?: string | null;
20440
20444
  createdAt?: any | null;
20441
20445
  updatedAt?: any | null;
20446
+ source?: string | null;
20442
20447
  } | null> | null;
20443
20448
  } | null> | null;
20444
20449
  pagination?: {
@@ -20529,6 +20534,7 @@ export type MailLogQuery = {
20529
20534
  contactEmail?: string | null;
20530
20535
  createdAt?: any | null;
20531
20536
  updatedAt?: any | null;
20537
+ source?: string | null;
20532
20538
  } | null;
20533
20539
  };
20534
20540
  export type MailLogsQueryVariables = Exact<{
@@ -20566,6 +20572,7 @@ export type MailLogsQuery = {
20566
20572
  contactEmail?: string | null;
20567
20573
  createdAt?: any | null;
20568
20574
  updatedAt?: any | null;
20575
+ source?: string | null;
20569
20576
  } | null> | null;
20570
20577
  pagination?: {
20571
20578
  __typename?: 'PaginationInfo';
@@ -7528,6 +7528,7 @@ exports.SendEmailToEmailThreadDocument = (0, client_1.gql) `
7528
7528
  contactEmail
7529
7529
  createdAt
7530
7530
  updatedAt
7531
+ source
7531
7532
  }
7532
7533
  contactLogId
7533
7534
  }
@@ -18257,6 +18258,7 @@ exports.EmailThreadDocument = (0, client_1.gql) `
18257
18258
  contactEmail
18258
18259
  createdAt
18259
18260
  updatedAt
18261
+ source
18260
18262
  }
18261
18263
  emailCount
18262
18264
  lastEmailAt
@@ -18326,6 +18328,7 @@ exports.EmailThreadsByCompanyDocument = (0, client_1.gql) `
18326
18328
  contactEmail
18327
18329
  createdAt
18328
18330
  updatedAt
18331
+ source
18329
18332
  }
18330
18333
  emailCount
18331
18334
  lastEmailAt
@@ -18516,6 +18519,7 @@ exports.MailLogDocument = (0, client_1.gql) `
18516
18519
  contactEmail
18517
18520
  createdAt
18518
18521
  updatedAt
18522
+ source
18519
18523
  }
18520
18524
  }
18521
18525
  `;
@@ -18577,6 +18581,7 @@ exports.MailLogsDocument = (0, client_1.gql) `
18577
18581
  contactEmail
18578
18582
  createdAt
18579
18583
  updatedAt
18584
+ source
18580
18585
  }
18581
18586
  pagination {
18582
18587
  currentPage
package/dist/mutations.js CHANGED
@@ -3413,6 +3413,7 @@ mutation SendEmailToEmailThread($action: String!, $attachments: JSONString, $bcc
3413
3413
  contactEmail
3414
3414
  createdAt
3415
3415
  updatedAt
3416
+ source
3416
3417
  }
3417
3418
  contactLogId
3418
3419
  }
package/dist/queries.js CHANGED
@@ -5401,6 +5401,7 @@ query MailLogs($filters: MailLogFilterInput) {
5401
5401
  contactEmail
5402
5402
  createdAt
5403
5403
  updatedAt
5404
+ source
5404
5405
  }
5405
5406
  pagination {
5406
5407
  currentPage
@@ -5441,6 +5442,7 @@ query MailLog($id: Int!) {
5441
5442
  contactEmail
5442
5443
  createdAt
5443
5444
  updatedAt
5445
+ source
5444
5446
  }
5445
5447
  }`;
5446
5448
  exports.EMAIL_THREAD = (0, client_1.gql) `
@@ -5475,6 +5477,7 @@ query EmailThread($threadId: String!, $companyId: Int) {
5475
5477
  contactEmail
5476
5478
  createdAt
5477
5479
  updatedAt
5480
+ source
5478
5481
  }
5479
5482
  emailCount
5480
5483
  lastEmailAt
@@ -5514,6 +5517,7 @@ query EmailThreadsByCompany($companyId: Int!, $page: Int, $pageSize: Int) {
5514
5517
  contactEmail
5515
5518
  createdAt
5516
5519
  updatedAt
5520
+ source
5517
5521
  }
5518
5522
  emailCount
5519
5523
  lastEmailAt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.89",
3
+ "version": "0.0.90",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",