andoncloud-dashboard-toolkit 1.2.3 → 1.2.4

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.
@@ -1544,6 +1544,7 @@ export declare type FieldConfig = {
1544
1544
  };
1545
1545
  export declare type FloorPlan = {
1546
1546
  __typename?: 'FloorPlan';
1547
+ id: Scalars['ID'];
1547
1548
  imageUrl: Scalars['String'];
1548
1549
  name: Scalars['String'];
1549
1550
  };
@@ -17707,6 +17708,7 @@ export declare type FloorPlansQuery = {
17707
17708
  __typename?: 'Query';
17708
17709
  floorPlans: Array<{
17709
17710
  __typename?: 'FloorPlan';
17711
+ id: string;
17710
17712
  imageUrl: string;
17711
17713
  name: string;
17712
17714
  }>;
package/dist/index.js CHANGED
@@ -12156,7 +12156,7 @@ var CountersDocument = gql$1(_templateObject21 || (_templateObject21 = _taggedTe
12156
12156
  var CurrentUserDocument = gql$1(_templateObject22 || (_templateObject22 = _taggedTemplateLiteralLoose(["\n query currentUser {\n currentUser {\n id\n login\n name\n }\n}\n "])));
12157
12157
  var DashboardsDocument = gql$1(_templateObject23 || (_templateObject23 = _taggedTemplateLiteralLoose(["\n query dashboards($filter: DashboardFilter) {\n dashboards(filter: $filter) {\n id\n name\n gridLayout\n }\n}\n "])));
12158
12158
  var DepartmentsDocument = gql$1(_templateObject24 || (_templateObject24 = _taggedTemplateLiteralLoose(["\n query departments($filter: DepartmentFilter) {\n departments(filter: $filter) {\n id\n name\n }\n}\n "])));
12159
- var FloorPlansDocument = gql$1(_templateObject25 || (_templateObject25 = _taggedTemplateLiteralLoose(["\n query floorPlans($filter: FloorPlanFilter) {\n floorPlans(filter: $filter) {\n imageUrl\n name\n }\n}\n "])));
12159
+ var FloorPlansDocument = gql$1(_templateObject25 || (_templateObject25 = _taggedTemplateLiteralLoose(["\n query floorPlans($filter: FloorPlanFilter) {\n floorPlans(filter: $filter) {\n id\n imageUrl\n name\n }\n}\n "])));
12160
12160
  var MetricValuesDocument = gql$1(_templateObject26 || (_templateObject26 = _taggedTemplateLiteralLoose(["\n query metricValues($workplaceIds: [ID!], $metricIds: [ID!]) {\n metricValues(workplaceIds: $workplaceIds, metricIds: $metricIds) {\n active\n type\n timer\n value\n status\n workplaceId\n unit\n metricId\n }\n}\n "])));
12161
12161
  var MetricsDocument = gql$1(_templateObject27 || (_templateObject27 = _taggedTemplateLiteralLoose(["\n query metrics {\n metrics {\n id\n name\n }\n}\n "])));
12162
12162
  var NotificationsDocument = gql$1(_templateObject28 || (_templateObject28 = _taggedTemplateLiteralLoose(["\n query notifications($filter: NotificationFilter) {\n notifications(filter: $filter) {\n channel\n emitterId\n emitterType\n id\n message\n details\n receiverId\n receiverType\n status\n }\n}\n "])));