@sjcrh/proteinpaint-types 2.139.1 → 2.140.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjcrh/proteinpaint-types",
3
- "version": "2.139.1",
3
+ "version": "2.140.1-0",
4
4
  "type": "module",
5
5
  "description": "Shared type definitions between ProteinPaint server and client code",
6
6
  "main": "src/index.ts",
@@ -1,4 +1,4 @@
1
- import type { TermWrapper } from './tw.ts'
1
+ import type { TermWrapper } from './updated-types.ts'
2
2
  import type { NumericTerm, NumericQ } from './numeric.ts'
3
3
  import type { TermSettingInstance } from '../termsetting.ts'
4
4
 
@@ -18,6 +18,7 @@ export type GeneExpressionQ = NumericQ & {
18
18
  export type GeneExpressionTW = TermWrapper & {
19
19
  q: GeneExpressionQ
20
20
  term: GeneExpressionTerm
21
+ type: 'NumTWRegularBin' | 'NumTWCustomBin' | 'NumTWCont' | 'NumTWSpline'
21
22
  }
22
23
 
23
24
  export type GeneExpressionTerm = NumericTerm & {