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.
- package/dist/generated/graphql.d.ts +17 -0
- package/dist/generated/graphql.js +5 -0
- package/dist/queries.js +5 -0
- package/package.json +1 -1
|
@@ -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<{
|
package/dist/queries.js
CHANGED