cf-service-sdk 0.0.18 → 0.0.19

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.
@@ -1118,6 +1118,8 @@ export type DashboardStatsType = {
1118
1118
  callsMade?: Maybe<Scalars['Int']['output']>;
1119
1119
  /** Email campaign counts by status */
1120
1120
  emailCampaigns?: Maybe<CampaignStatusCountType>;
1121
+ /** Email campaign counts by scheduled status */
1122
+ emailCampaignsScheduled?: Maybe<EmailCampaignScheduledCountType>;
1121
1123
  /** Start date of the statistics period */
1122
1124
  fromDate?: Maybe<Scalars['String']['output']>;
1123
1125
  /** Total number of meetings booked */
@@ -1178,6 +1180,15 @@ export type DisconnectNylasIntegration = {
1178
1180
  message?: Maybe<Scalars['String']['output']>;
1179
1181
  success?: Maybe<Scalars['Boolean']['output']>;
1180
1182
  };
1183
+ export type EmailCampaignScheduledCountType = {
1184
+ __typename?: 'EmailCampaignScheduledCountType';
1185
+ /** Number of scheduled campaigns */
1186
+ scheduled?: Maybe<Scalars['Int']['output']>;
1187
+ /** Number of scheduled campaigns for next 7 days */
1188
+ scheduledForNext7Days?: Maybe<Scalars['Int']['output']>;
1189
+ /** Number of scheduled campaigns for today */
1190
+ scheduledForToday?: Maybe<Scalars['Int']['output']>;
1191
+ };
1181
1192
  /** GraphQL type for EmailIntegration model */
1182
1193
  export type EmailIntegrationType = {
1183
1194
  __typename?: 'EmailIntegrationType';
@@ -9509,6 +9520,12 @@ export type DashboardStatsQuery = {
9509
9520
  draft?: number | null;
9510
9521
  completed?: number | null;
9511
9522
  } | null;
9523
+ emailCampaignsScheduled?: {
9524
+ __typename?: 'EmailCampaignScheduledCountType';
9525
+ scheduled?: number | null;
9526
+ scheduledForToday?: number | null;
9527
+ scheduledForNext7Days?: number | null;
9528
+ } | null;
9512
9529
  } | null;
9513
9530
  };
9514
9531
  export type EmailTemplateQueryVariables = Exact<{
@@ -8656,6 +8656,11 @@ exports.DashboardStatsDocument = (0, client_1.gql) `
8656
8656
  draft
8657
8657
  completed
8658
8658
  }
8659
+ emailCampaignsScheduled {
8660
+ scheduled
8661
+ scheduledForToday
8662
+ scheduledForNext7Days
8663
+ }
8659
8664
  }
8660
8665
  }
8661
8666
  `;
package/dist/queries.js CHANGED
@@ -22,6 +22,11 @@ query DashboardStats($startDate: DateTime, $endDate: DateTime) {
22
22
  draft
23
23
  completed
24
24
  }
25
+ emailCampaignsScheduled {
26
+ scheduled
27
+ scheduledForToday
28
+ scheduledForNext7Days
29
+ }
25
30
  }
26
31
  }`;
27
32
  exports.RECENT_HISTORY = (0, client_1.gql) `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",