@vitessce/constants-internal 3.6.7 → 3.6.8

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
@@ -154,9 +154,7 @@ const FileType = {
154
154
  OBS_SETS_SPATIALDATA_ZARR: "obsSets.spatialdata.zarr",
155
155
  OBS_SPOTS_SPATIALDATA_ZARR: "obsSpots.spatialdata.zarr",
156
156
  FEATURE_LABELS_SPATIALDATA_ZARR: "featureLabels.spatialdata.zarr",
157
- // TODO:
158
- // OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
159
- // OBS_LOCATIONS_SPATIALDATA_ZARR: 'obsLocations.spatialdata.zarr',
157
+ OBS_POINTS_SPATIALDATA_ZARR: "obsPoints.spatialdata.zarr",
160
158
  // SpatialData - zipped
161
159
  IMAGE_SPATIALDATA_ZARR_ZIP: "image.spatialdata.zarr.zip",
162
160
  LABELS_SPATIALDATA_ZARR_ZIP: "labels.spatialdata.zarr.zip",
@@ -165,6 +163,7 @@ const FileType = {
165
163
  OBS_SETS_SPATIALDATA_ZARR_ZIP: "obsSets.spatialdata.zarr.zip",
166
164
  OBS_SPOTS_SPATIALDATA_ZARR_ZIP: "obsSpots.spatialdata.zarr.zip",
167
165
  FEATURE_LABELS_SPATIALDATA_ZARR_ZIP: "featureLabels.spatialdata.zarr.zip",
166
+ OBS_POINTS_SPATIALDATA_ZARR_ZIP: "obsPoints.spatialdata.zarr.zip",
168
167
  // MuData
169
168
  OBS_FEATURE_MATRIX_MUDATA_ZARR: "obsFeatureMatrix.mudata.zarr",
170
169
  OBS_SETS_MUDATA_ZARR: "obsSets.mudata.zarr",
@@ -444,6 +443,7 @@ const FILE_TYPE_DATA_TYPE_MAPPING = {
444
443
  [FileType.OBS_FEATURE_MATRIX_SPATIALDATA_ZARR]: DataType.OBS_FEATURE_MATRIX,
445
444
  [FileType.OBS_SETS_SPATIALDATA_ZARR]: DataType.OBS_SETS,
446
445
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: DataType.FEATURE_LABELS,
446
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: DataType.OBS_POINTS,
447
447
  // For new file types to support old file types
448
448
  [FileType.OBS_EMBEDDING_CELLS_JSON]: DataType.OBS_EMBEDDING,
449
449
  [FileType.OBS_LOCATIONS_CELLS_JSON]: DataType.OBS_LOCATIONS,
@@ -617,6 +617,9 @@ const ALT_ZARR_STORE_TYPES = {
617
617
  },
618
618
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: {
619
619
  zip: FileType.FEATURE_LABELS_SPATIALDATA_ZARR_ZIP
620
+ },
621
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: {
622
+ zip: FileType.OBS_POINTS_SPATIALDATA_ZARR_ZIP
620
623
  }
621
624
  };
622
625
  const AUTO_INDEPENDENT_COORDINATION_TYPES = [
@@ -1292,10 +1295,10 @@ const COMPONENT_COORDINATION_TYPES = {
1292
1295
  ]
1293
1296
  };
1294
1297
  const note = "This file is autogenerated by .changeset/post-changelog.mjs.";
1295
- const version = "3.6.7";
1296
- const date = "2025-07-16";
1298
+ const version = "3.6.8";
1299
+ const date = "2025-07-25";
1297
1300
  const branch = "changeset-release/main";
1298
- const hash = "1a5090ad";
1301
+ const hash = "4332b3a5";
1299
1302
  const version$1 = {
1300
1303
  note,
1301
1304
  version,
@@ -1 +1 @@
1
- {"version":3,"file":"constant-relationships.d.ts","sourceRoot":"","sources":["../src/constant-relationships.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,2BAA2B;;CAoEvC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,kCAAkC;;CA6D9C,CAAC;AAKF,eAAO,MAAM,oBAAoB;;;;;;;;CAiGhC,CAAC"}
1
+ {"version":3,"file":"constant-relationships.d.ts","sourceRoot":"","sources":["../src/constant-relationships.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,2BAA2B;;CAqEvC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,kCAAkC;;CA6D9C,CAAC;AAKF,eAAO,MAAM,oBAAoB;;;;;;;;CAoGhC,CAAC"}
@@ -54,6 +54,7 @@ export const FILE_TYPE_DATA_TYPE_MAPPING = {
54
54
  [FileType.OBS_FEATURE_MATRIX_SPATIALDATA_ZARR]: DataType.OBS_FEATURE_MATRIX,
55
55
  [FileType.OBS_SETS_SPATIALDATA_ZARR]: DataType.OBS_SETS,
56
56
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: DataType.FEATURE_LABELS,
57
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: DataType.OBS_POINTS,
57
58
  // For new file types to support old file types
58
59
  [FileType.OBS_EMBEDDING_CELLS_JSON]: DataType.OBS_EMBEDDING,
59
60
  [FileType.OBS_LOCATIONS_CELLS_JSON]: DataType.OBS_LOCATIONS,
@@ -236,4 +237,7 @@ export const ALT_ZARR_STORE_TYPES = {
236
237
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: {
237
238
  zip: FileType.FEATURE_LABELS_SPATIALDATA_ZARR_ZIP,
238
239
  },
240
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: {
241
+ zip: FileType.OBS_POINTS_SPATIALDATA_ZARR_ZIP,
242
+ },
239
243
  };
@@ -140,6 +140,7 @@ export declare const FileType: {
140
140
  OBS_SETS_SPATIALDATA_ZARR: string;
141
141
  OBS_SPOTS_SPATIALDATA_ZARR: string;
142
142
  FEATURE_LABELS_SPATIALDATA_ZARR: string;
143
+ OBS_POINTS_SPATIALDATA_ZARR: string;
143
144
  IMAGE_SPATIALDATA_ZARR_ZIP: string;
144
145
  LABELS_SPATIALDATA_ZARR_ZIP: string;
145
146
  SHAPES_SPATIALDATA_ZARR_ZIP: string;
@@ -147,6 +148,7 @@ export declare const FileType: {
147
148
  OBS_SETS_SPATIALDATA_ZARR_ZIP: string;
148
149
  OBS_SPOTS_SPATIALDATA_ZARR_ZIP: string;
149
150
  FEATURE_LABELS_SPATIALDATA_ZARR_ZIP: string;
151
+ OBS_POINTS_SPATIALDATA_ZARR_ZIP: string;
150
152
  OBS_FEATURE_MATRIX_MUDATA_ZARR: string;
151
153
  OBS_SETS_MUDATA_ZARR: string;
152
154
  OBS_EMBEDDING_MUDATA_ZARR: string;
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;CAmBpB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;CAc7B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsJpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4I5B,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,eAAe;;;CAG3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;CAuB3B,CAAC"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;CAmBpB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;CAc7B,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqJpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4I5B,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,eAAe;;;CAG3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;CAuB3B,CAAC"}
@@ -150,9 +150,7 @@ export const FileType = {
150
150
  OBS_SETS_SPATIALDATA_ZARR: 'obsSets.spatialdata.zarr',
151
151
  OBS_SPOTS_SPATIALDATA_ZARR: 'obsSpots.spatialdata.zarr',
152
152
  FEATURE_LABELS_SPATIALDATA_ZARR: 'featureLabels.spatialdata.zarr',
153
- // TODO:
154
- // OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
155
- // OBS_LOCATIONS_SPATIALDATA_ZARR: 'obsLocations.spatialdata.zarr',
153
+ OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
156
154
  // SpatialData - zipped
157
155
  IMAGE_SPATIALDATA_ZARR_ZIP: 'image.spatialdata.zarr.zip',
158
156
  LABELS_SPATIALDATA_ZARR_ZIP: 'labels.spatialdata.zarr.zip',
@@ -161,6 +159,7 @@ export const FileType = {
161
159
  OBS_SETS_SPATIALDATA_ZARR_ZIP: 'obsSets.spatialdata.zarr.zip',
162
160
  OBS_SPOTS_SPATIALDATA_ZARR_ZIP: 'obsSpots.spatialdata.zarr.zip',
163
161
  FEATURE_LABELS_SPATIALDATA_ZARR_ZIP: 'featureLabels.spatialdata.zarr.zip',
162
+ OBS_POINTS_SPATIALDATA_ZARR_ZIP: 'obsPoints.spatialdata.zarr.zip',
164
163
  // MuData
165
164
  OBS_FEATURE_MATRIX_MUDATA_ZARR: 'obsFeatureMatrix.mudata.zarr',
166
165
  OBS_SETS_MUDATA_ZARR: 'obsSets.mudata.zarr',
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "note": "This file is autogenerated by .changeset/post-changelog.mjs.",
3
- "version": "3.6.7",
4
- "date": "2025-07-16",
3
+ "version": "3.6.8",
4
+ "date": "2025-07-25",
5
5
  "branch": "changeset-release/main",
6
- "hash": "1a5090ad"
6
+ "hash": "4332b3a5"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitessce/constants-internal",
3
- "version": "3.6.7",
3
+ "version": "3.6.8",
4
4
  "author": "HIDIVE Lab at HMS",
5
5
  "homepage": "http://vitessce.io",
6
6
  "repository": {
@@ -56,6 +56,7 @@ export const FILE_TYPE_DATA_TYPE_MAPPING = {
56
56
  [FileType.OBS_FEATURE_MATRIX_SPATIALDATA_ZARR]: DataType.OBS_FEATURE_MATRIX,
57
57
  [FileType.OBS_SETS_SPATIALDATA_ZARR]: DataType.OBS_SETS,
58
58
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: DataType.FEATURE_LABELS,
59
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: DataType.OBS_POINTS,
59
60
 
60
61
  // For new file types to support old file types
61
62
  [FileType.OBS_EMBEDDING_CELLS_JSON]: DataType.OBS_EMBEDDING,
@@ -243,4 +244,7 @@ export const ALT_ZARR_STORE_TYPES = {
243
244
  [FileType.FEATURE_LABELS_SPATIALDATA_ZARR]: {
244
245
  zip: FileType.FEATURE_LABELS_SPATIALDATA_ZARR_ZIP,
245
246
  },
247
+ [FileType.OBS_POINTS_SPATIALDATA_ZARR]: {
248
+ zip: FileType.OBS_POINTS_SPATIALDATA_ZARR_ZIP,
249
+ },
246
250
  };
package/src/constants.ts CHANGED
@@ -160,9 +160,7 @@ export const FileType = {
160
160
  OBS_SETS_SPATIALDATA_ZARR: 'obsSets.spatialdata.zarr',
161
161
  OBS_SPOTS_SPATIALDATA_ZARR: 'obsSpots.spatialdata.zarr',
162
162
  FEATURE_LABELS_SPATIALDATA_ZARR: 'featureLabels.spatialdata.zarr',
163
- // TODO:
164
- // OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
165
- // OBS_LOCATIONS_SPATIALDATA_ZARR: 'obsLocations.spatialdata.zarr',
163
+ OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
166
164
 
167
165
  // SpatialData - zipped
168
166
  IMAGE_SPATIALDATA_ZARR_ZIP: 'image.spatialdata.zarr.zip',
@@ -172,6 +170,7 @@ export const FileType = {
172
170
  OBS_SETS_SPATIALDATA_ZARR_ZIP: 'obsSets.spatialdata.zarr.zip',
173
171
  OBS_SPOTS_SPATIALDATA_ZARR_ZIP: 'obsSpots.spatialdata.zarr.zip',
174
172
  FEATURE_LABELS_SPATIALDATA_ZARR_ZIP: 'featureLabels.spatialdata.zarr.zip',
173
+ OBS_POINTS_SPATIALDATA_ZARR_ZIP: 'obsPoints.spatialdata.zarr.zip',
175
174
  // MuData
176
175
  OBS_FEATURE_MATRIX_MUDATA_ZARR: 'obsFeatureMatrix.mudata.zarr',
177
176
  OBS_SETS_MUDATA_ZARR: 'obsSets.mudata.zarr',
package/src/version.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "note": "This file is autogenerated by .changeset/post-changelog.mjs.",
3
- "version": "3.6.7",
4
- "date": "2025-07-16",
3
+ "version": "3.6.8",
4
+ "date": "2025-07-25",
5
5
  "branch": "changeset-release/main",
6
- "hash": "1a5090ad"
6
+ "hash": "4332b3a5"
7
7
  }