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
@@ -5870,6 +5870,7 @@ query DashboardStats($startDate: DateTime, $endDate: DateTime) {
5870
5870
  callsMade
5871
5871
  meetingsBooked
5872
5872
  tasksCompleted
5873
+ siteVisits
5873
5874
  emailCampaigns {
5874
5875
  inProgress
5875
5876
  active
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",