@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 +4 -0
- package/dist-tsc/constants.d.ts +2 -0
- package/dist-tsc/constants.js +4 -0
- package/package.json +1 -1
- package/src/constants.js +4 -0
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",
|
package/dist-tsc/constants.d.ts
CHANGED
|
@@ -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;
|
package/dist-tsc/constants.js
CHANGED
|
@@ -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
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',
|