@sjcrh/proteinpaint-types 2.89.1 → 2.92.1-0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dataset.ts +2 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-types",
3
- "version": "2.89.1",
3
+ "version": "2.92.1-0",
4
4
  "type": "module",
5
5
  "description": "Shared type definitions between ProteinPaint server and client code",
6
6
  "main": "src/index.ts",
package/src/dataset.ts CHANGED
@@ -547,8 +547,7 @@ export type SingleCellDataGdc = {
547
547
  get?: (q: any) => any
548
548
  refName?: string
549
549
  plots: GDCSingleCellPlot[]
550
- width?: number
551
- height?: number
550
+ settings?: { [key: string]: string }
552
551
  }
553
552
 
554
553
  export type SingleCellDEgeneGdc = {
@@ -611,8 +610,7 @@ export type SingleCellDataNative = {
611
610
  get?: (q: any) => any
612
611
  /** width and height of the plots */
613
612
 
614
- width?: number
615
- height?: number
613
+ settings?: { [key: string]: any }
616
614
  }
617
615
 
618
616
  export type SingleCellQuery = {