chore(ui/client:) update client to 0.2.27 (#12395)

pull/12406/head
Delmer 2019-03-06 17:13:51 -05:00 committed by GitHub
parent 219e056366
commit fe6ce24c80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 11 deletions

8
ui/package-lock.json generated
View File

@ -985,9 +985,9 @@
}
},
"@influxdata/influx": {
"version": "0.2.26",
"resolved": "https://registry.npmjs.org/@influxdata/influx/-/influx-0.2.26.tgz",
"integrity": "sha512-Zmay0PLHHAATWbRu4uvit6pLDTwy54GlD/V6v1SzbfS1XswhbWZBNXMyALBSN/pWQ/6pafwdotKAK9MqH78Wrg==",
"version": "0.2.27",
"resolved": "https://registry.npmjs.org/@influxdata/influx/-/influx-0.2.27.tgz",
"integrity": "sha512-B00No54veQGtteUwEcc6/NSCL1bvgOhk3PeD8qPSkHiGHlPZjt3ae+F3sisVtJ4DDqqQTkZTKTyfuBjPX0LntA==",
"requires": {
"axios": "^0.18.0"
}
@ -11029,7 +11029,7 @@
"dependencies": {
"minimist": {
"version": "0.0.10",
"resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz",
"integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=",
"dev": true
},

View File

@ -137,7 +137,7 @@
},
"dependencies": {
"@influxdata/clockface": "0.0.5",
"@influxdata/influx": "0.2.26",
"@influxdata/influx": "0.2.27",
"@influxdata/react-custom-scrollbars": "4.3.8",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",

View File

@ -12,7 +12,7 @@ import {loadDashboard} from 'src/dashboards/actions/v2/'
import {notify} from 'src/shared/actions/notifications'
// Types
import {Proto, Dashboard} from '@influxdata/influx'
import {Proto, IDashboard} from '@influxdata/influx'
import {GetState} from 'src/types/v2'
import {ConfigurationState} from 'src/types/v2/dataLoaders'
@ -59,7 +59,7 @@ export const createDashFromProto = (
try {
const dashboards = await client.dashboards.createFromProto(protoID, orgID)
dashboards.forEach((d: Dashboard) => {
dashboards.forEach((d: IDashboard) => {
const updatedDashboard = {
...d,
labels: d.labels.map(addLabelDefaults),

View File

@ -1,9 +1,8 @@
import {HistogramPosition} from 'src/minard'
import {Color} from 'src/types/colors'
import {Label} from 'src/types/v2/labels'
import {
Dashboard as DashboardAPI,
IDashboard as DashboardAPI,
View as ViewAPI,
Cell as CellAPI,
} from '@influxdata/influx'
@ -91,9 +90,8 @@ export interface Cell extends CellAPI {
dashboardID: string
}
export interface Dashboard extends Omit<DashboardAPI, 'cells' | 'labels'> {
export interface Dashboard extends Omit<DashboardAPI, 'cells'> {
cells: Cell[]
labels: Label[]
}
type Omit<K, V> = Pick<K, Exclude<keyof K, V>>