cf-service-sdk 0.1.26 → 0.1.27
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.
|
@@ -2054,6 +2054,8 @@ export type DashboardStatsType = {
|
|
|
2054
2054
|
fromDate?: Maybe<Scalars['String']['output']>;
|
|
2055
2055
|
/** Total number of meetings booked */
|
|
2056
2056
|
meetingsBooked?: Maybe<Scalars['Int']['output']>;
|
|
2057
|
+
/** Total number of site visits */
|
|
2058
|
+
siteVisits?: Maybe<Scalars['Int']['output']>;
|
|
2057
2059
|
/** Total number of tasks completed */
|
|
2058
2060
|
tasksCompleted?: Maybe<Scalars['Int']['output']>;
|
|
2059
2061
|
/** End date of the statistics period */
|
|
@@ -22699,6 +22701,7 @@ export type DashboardStatsQuery = {
|
|
|
22699
22701
|
callsMade?: number | null;
|
|
22700
22702
|
meetingsBooked?: number | null;
|
|
22701
22703
|
tasksCompleted?: number | null;
|
|
22704
|
+
siteVisits?: number | null;
|
|
22702
22705
|
emailCampaigns?: {
|
|
22703
22706
|
__typename?: 'CampaignStatusCountType';
|
|
22704
22707
|
inProgress?: number | null;
|
|
@@ -20226,6 +20226,7 @@ exports.DashboardStatsDocument = (0, client_1.gql) `
|
|
|
20226
20226
|
callsMade
|
|
20227
20227
|
meetingsBooked
|
|
20228
20228
|
tasksCompleted
|
|
20229
|
+
siteVisits
|
|
20229
20230
|
emailCampaigns {
|
|
20230
20231
|
inProgress
|
|
20231
20232
|
active
|
package/dist/queries.js
CHANGED