@vitessce/constants-internal 3.0.1 → 3.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/dist/index.js CHANGED
@@ -93,6 +93,10 @@ const FileType = {
93
93
  ANNDATA_EXPRESSION_MATRIX_ZARR: "anndata-expression-matrix.zarr"
94
94
  };
95
95
  const CoordinationType = {
96
+ // Meta coordination scopes
97
+ META_COORDINATION_SCOPES: "metaCoordinationScopes",
98
+ META_COORDINATION_SCOPES_BY: "metaCoordinationScopesBy",
99
+ // Other coordination scopes
96
100
  DATASET: "dataset",
97
101
  // Entity types
98
102
  OBS_TYPE: "obsType",
@@ -81,6 +81,8 @@ export namespace FileType {
81
81
  const ANNDATA_EXPRESSION_MATRIX_ZARR: string;
82
82
  }
83
83
  export namespace CoordinationType {
84
+ const META_COORDINATION_SCOPES: string;
85
+ const META_COORDINATION_SCOPES_BY: string;
84
86
  const DATASET: string;
85
87
  const OBS_TYPE: string;
86
88
  const FEATURE_TYPE: string;
@@ -102,6 +102,10 @@ export const FileType = {
102
102
  * to help prevent typos.
103
103
  */
104
104
  export const CoordinationType = {
105
+ // Meta coordination scopes
106
+ META_COORDINATION_SCOPES: 'metaCoordinationScopes',
107
+ META_COORDINATION_SCOPES_BY: 'metaCoordinationScopesBy',
108
+ // Other coordination scopes
105
109
  DATASET: 'dataset',
106
110
  // Entity types
107
111
  OBS_TYPE: 'obsType',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/constants-internal",
3
- "version": "3.0.1",
3
+ "version": "3.1.0",
4
4
  "author": "Gehlenborg Lab",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
package/src/constants.js CHANGED
@@ -106,6 +106,10 @@ export const FileType = {
106
106
  * to help prevent typos.
107
107
  */
108
108
  export const CoordinationType = {
109
+ // Meta coordination scopes
110
+ META_COORDINATION_SCOPES: 'metaCoordinationScopes',
111
+ META_COORDINATION_SCOPES_BY: 'metaCoordinationScopesBy',
112
+ // Other coordination scopes
109
113
  DATASET: 'dataset',
110
114
  // Entity types
111
115
  OBS_TYPE: 'obsType',