diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6620c030..538137086 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -140,7 +140,7 @@ The `webknossos` folder contains examples, which are not part of the package, bu The tests also contain functionality for the WEBKNOSSOS client. There a two modes to run the tests: 1. `./test.sh --refresh-snapshots`, sending network requests to a WEBKNOSSOS instance: - This expects a local WEBKNOSSOS setup with specific test data, which is shipped with WEBKNOSSOS. If you're starting and running WEBKNOSSOS manually, please use port 9000 (the default) and run the `tools/postgres/prepareTestDb.sh` script in the WEBKNOSSOS repository (⚠️ this overwrites your local WEBKNOSSOS database). Alternatively, a docker-compose setup is started automatically for the tests, see `./test.sh` and `tests/docker-compose.yml` for details. The network requests & response are recorded as "cassettes" by [vcr.py](https://vcrpy.readthedocs.io), see next point: + This expects a local WEBKNOSSOS setup with specific test data, which is shipped with WEBKNOSSOS. If you're starting and running WEBKNOSSOS manually, please use port 9000 (the default) and run the `tools/postgres/dbtool.js prepare-test-db` script in the WEBKNOSSOS repository (⚠️ this overwrites your local WEBKNOSSOS database). Alternatively, a docker-compose setup is started automatically for the tests, see `./test.sh` and `tests/docker-compose.yml` for details. The network requests & response are recorded as "cassettes" by [vcr.py](https://vcrpy.readthedocs.io), see next point: 2. `./test.sh` replays responses from previous network snapshots using [vcr.py](https://vcrpy.readthedocs.io) via [pytest-recording](https://github.com/kiwicom/pytest-recording). No additional network requests are allowed in this mode. `./test.sh --store-durations` updates the durations for diff --git a/webknossos/Changelog.md b/webknossos/Changelog.md index 1111164f4..e647cd8e6 100644 --- a/webknossos/Changelog.md +++ b/webknossos/Changelog.md @@ -15,6 +15,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section ### Breaking Changes ### Added +- Added support for new voxel size that stores unit and updated to WEBKNOSSOS API version 7. [#1136](https://github.com/scalableminds/webknossos-libs/pull/1136) ### Changed diff --git a/webknossos/local_wk_setup.sh b/webknossos/local_wk_setup.sh index 3f165207a..205b4e350 100755 --- a/webknossos/local_wk_setup.sh +++ b/webknossos/local_wk_setup.sh @@ -1,7 +1,7 @@ function export_vars { export WK_TOKEN=1b88db86331a38c21a0b235794b9e459856490d70408bcffb767f64ade0f83d2bdb4c4e181b9a9a30cdece7cb7c65208cc43b6c1bb5987f5ece00d348b1a905502a266f8fc64f0371cd6559393d72e031d0c2d0cabad58cccf957bb258bc86f05b5dc3d4fff3d5e3d9c0389a6027d861a21e78e3222fb6c5b7944520ef21761e export WK_URL=http://localhost:9000 - export DOCKER_TAG=master__27071 + export DOCKER_TAG=master__28678 } function ensure_local_test_wk { diff --git a/webknossos/testdata/complex_property_ds/datasource-properties.json b/webknossos/testdata/complex_property_ds/datasource-properties.json index 1592053b6..9c166761d 100644 --- a/webknossos/testdata/complex_property_ds/datasource-properties.json +++ b/webknossos/testdata/complex_property_ds/datasource-properties.json @@ -8,34 +8,62 @@ "name": "color", "category": "color", "boundingBox": { - "topLeft": [0, 0, 0], + "topLeft": [ + 0, + 0, + 0 + ], "width": 1024, "height": 1024, "depth": 1024 }, "wkwResolutions": [ { - "resolution": [1, 1, 1], + "resolution": [ + 1, + 1, + 1 + ], "cubeLength": 1024 }, { - "resolution": [16, 16, 16], + "resolution": [ + 16, + 16, + 16 + ], "cubeLength": 64 }, { - "resolution": [2, 2, 2], + "resolution": [ + 2, + 2, + 2 + ], "cubeLength": 512 }, { - "resolution": [32, 32, 32], + "resolution": [ + 32, + 32, + 32 + ], "cubeLength": 32 }, { - "resolution": [4, 4, 4], + "resolution": [ + 4, + 4, + 4 + ], "cubeLength": 256 }, { - "resolution": [8, 8, 8], + "resolution": [ + 8, + 8, + 8 + ], "cubeLength": 128 } ], @@ -45,34 +73,62 @@ { "name": "segmentation", "boundingBox": { - "topLeft": [0, 0, 0], + "topLeft": [ + 0, + 0, + 0 + ], "width": 1024, "height": 1024, "depth": 1024 }, "wkwResolutions": [ { - "resolution": [1, 1, 1], + "resolution": [ + 1, + 1, + 1 + ], "cubeLength": 1024 }, { - "resolution": [16, 16, 16], + "resolution": [ + 16, + 16, + 16 + ], "cubeLength": 64 }, { - "resolution": [2, 2, 2], + "resolution": [ + 2, + 2, + 2 + ], "cubeLength": 512 }, { - "resolution": [32, 32, 32], + "resolution": [ + 32, + 32, + 32 + ], "cubeLength": 32 }, { - "resolution": [4, 4, 4], + "resolution": [ + 4, + 4, + 4 + ], "cubeLength": 256 }, { - "resolution": [8, 8, 8], + "resolution": [ + 8, + 8, + 8 + ], "cubeLength": 128 } ], @@ -90,5 +146,12 @@ "dataFormat": "wkw" } ], - "scale": [11.239999771118164, 11.239999771118164, 28] + "scale": { + "unit": "nanometer", + "factor": [ + 11.239999771118164, + 11.239999771118164, + 28 + ] + } } diff --git a/webknossos/testdata/tiff/datasource-properties.wkw-fixture.json b/webknossos/testdata/tiff/datasource-properties.wkw-fixture.json index e968a97a2..65fb6dfb0 100644 --- a/webknossos/testdata/tiff/datasource-properties.wkw-fixture.json +++ b/webknossos/testdata/tiff/datasource-properties.wkw-fixture.json @@ -11,18 +11,33 @@ "elementClass": "uint8", "wkwResolutions": [ { - "resolution": [1, 1, 1], + "resolution": [ + 1, + 1, + 1 + ], "cubeLength": 1024 } ], "numChannels": 1, "boundingBox": { - "topLeft": [0, 0, 0], + "topLeft": [ + 0, + 0, + 0 + ], "width": 265, "height": 265, "depth": 257 } } ], - "scale": [11.24, 11.24, 25.0] + "scale": { + "unit": "nanometer", + "factor": [ + 11.24, + 11.24, + 25.0 + ] + } } diff --git a/webknossos/testdata/tiff/datasource-properties.zarr-fixture.json b/webknossos/testdata/tiff/datasource-properties.zarr-fixture.json index 44f359664..67dfc29f1 100644 --- a/webknossos/testdata/tiff/datasource-properties.zarr-fixture.json +++ b/webknossos/testdata/tiff/datasource-properties.zarr-fixture.json @@ -3,11 +3,14 @@ "name": "test_dataset", "team": "" }, - "scale": [ - 11.24, - 11.24, - 25.0 - ], + "scale": { + "unit": "nanometer", + "factor": [ + 11.24, + 11.24, + 25.0 + ] + }, "dataLayers": [ { "name": "tiff", @@ -43,4 +46,4 @@ "largestSegmentId": 255 } ] -} \ No newline at end of file +} diff --git a/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml b/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml index 2ce5b5bfb..e306257c7 100644 --- a/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml +++ b/webknossos/tests/cassettes/test_annotation/test_annotation_from_url[61c20205010000cc004a6356].yaml @@ -13,20 +13,20 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/annotations/61c20205010000cc004a6356/download?skipVolumeData=true + uri: https://webknossos.org/api/v7/annotations/61c20205010000cc004a6356/download?skipVolumeData=true response: content: zip: l4dense_motta_et_al_demo_v2__explorational__potto__4a6356.nml: "\n \ \n \n \n \n + content=\"e8d5ea3dd097af5a4a7a3bb834d9da56d072ba4b\"/>\n \n \n \ \n \n \n \n \n - \ \n \ \n @@ -53,7 +53,7 @@ interactions: content-disposition: - attachment;filename="l4dense_motta_et_al_demo_v2__explorational__potto__4a6356.zip" content-length: - - '1050' + - '1063' content-type: - application/zip date: Mon, 01 Jan 2000 00:00:00 GMT @@ -79,9 +79,9 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4dense_motta_et_al_demo_v2 + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4dense_motta_et_al_demo_v2 response: - content: '{"name":"l4dense_motta_et_al_demo_v2","dataSource":{"id":{"name":"l4dense_motta_et_al_demo_v2","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo_v2","dataSource":{"id":{"name":"l4dense_motta_et_al_demo_v2","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"max":159,"min":63}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"isDisabled":true}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{}}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in Dense connectomic @@ -95,7 +95,7 @@ interactions: connection: - keep-alive content-length: - - '2526' + - '2645' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -117,7 +117,7 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Combined datastore and tracingstore directory\n \n \n \n \n - \ \n \n

This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57\u201D + \ \n \n

This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49\u201D folder.

\n

The following are the contents of the folder:

\n
    \n \ \n
  • datasource-properties.json
  • \n \ \n
  • .zgroup
  • \n \n
  • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

    This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57\u201D + \ \n \n

    This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49\u201D folder.

    \n

    The following are the contents of the folder:

    \n
      \n \ \n
    • datasource-properties.json
    • \n \ \n
    • .zgroup
    • \n \n
    • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

      This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57\u201D + \ \n \n

      This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49\u201D folder.

      \n

      The following are the contents of the folder:

      \n
        \n \ \n
      • datasource-properties.json
      • \n \ \n
      • .zgroup
      • \n \n
      • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/1\u201D folder.

        \n

        The following are the contents of the folder:

        \n
        \n \ \n\n" @@ -1557,7 +1558,7 @@ interactions: cache-control: - no-cache content-length: - - '1320' + - '1321' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1744,8 +1745,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -1766,7 +1767,7 @@ interactions: cache-control: - no-cache content-length: - - '1320' + - '1321' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1787,8 +1788,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/2-2-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/2-2-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -1809,7 +1810,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1996,8 +1997,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/2-2-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/2-2-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2018,7 +2019,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2039,8 +2040,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/4-4-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/4-4-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2061,7 +2062,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2248,8 +2249,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/4-4-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/4-4-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2270,7 +2271,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2291,8 +2292,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/8-8-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/8-8-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2313,7 +2314,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2500,8 +2501,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/8-8-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/8-8-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2522,7 +2523,7 @@ interactions: cache-control: - no-cache content-length: - - '1324' + - '1325' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2543,8 +2544,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/16-16-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/16-16-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2565,7 +2566,7 @@ interactions: cache-control: - no-cache content-length: - - '1326' + - '1327' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2752,8 +2753,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-03-14_12-23-57/segmentation/16-16-1\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/skin_segmented_2024-07-15_11-25-49/segmentation/16-16-1\u201D folder.

        \n

        The following are the contents of the folder:

        \n \n \ \n\n" @@ -2774,7 +2775,7 @@ interactions: cache-control: - no-cache content-length: - - '1326' + - '1327' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml b/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml index 17f0fdcf3..c5b78c63b 100644 --- a/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml +++ b/webknossos/tests/cassettes/test_examples/test_remote_datasets.yaml @@ -13,9 +13,9 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4dense_motta_et_al_demo + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4dense_motta_et_al_demo response: - content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":true,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation + content: '{"name":"l4dense_motta_et_al_demo","dataSource":{"id":{"name":"l4dense_motta_et_al_demo","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint8","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":false,"intensityRange":[80,180]}},{"name":"predictions","category":"color","boundingBox":{"topLeft":[0,0,0],"width":5632,"height":8704,"depth":3584},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint24","adminViewConfiguration":{"alpha":100,"gammaCorrectionValue":1,"min":0,"color":[255,255,255],"max":255,"isInverted":false,"isInEditMode":false,"isDisabled":true,"intensityRange":[0,255]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[128,128,128],"width":5445,"height":8380,"depth":3285},"resolutions":[[1,1,1],[2,2,1],[4,4,2],[8,8,4],[16,16,8],[32,32,16],[64,64,32],[128,128,64],[256,256,128],[512,512,256],[1024,1024,512]],"elementClass":"uint32","largestSegmentId":2504697,"adminViewConfiguration":{"alpha":20,"gammaCorrectionValue":1,"color":[255,255,255],"isInverted":false,"isInEditMode":false,"isDisabled":false}}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":"Segmentation created with [Voxelytics](https://scalableminds.com/voxelytics) by [scalable minds](https://scalableminds.com).\n\n \n\nRaw SBEM data and segmentation ground truth by Max Planck Institute for Brain Research. As published in *Dense connectomic @@ -29,7 +29,7 @@ interactions: connection: - keep-alive content-length: - - '2952' + - '3053' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -51,8 +51,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-03-19_10-17-55\u201D + \ \n \n

        This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-07-15_11-26-50\u201D folder.

        \n

        The following are the contents of the folder:

        \n
          \n \ \n
        • datasource-properties.json
        • \n \ \n
        • .zgroup
        • \n \n
        • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

          This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-03-19_10-17-55\u201D + \ \n \n

          This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-07-15_11-26-50\u201D folder.

          \n

          The following are the contents of the folder:

          \n
            \n \ \n
          • datasource-properties.json
          • \n \ \n
          • .zgroup
          • \n \n
          • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

            This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-03-19_10-17-55\u201D + \ \n \n

            This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-07-15_11-26-50\u201D folder.

            \n

            The following are the contents of the folder:

            \n
              \n \ \n
            • datasource-properties.json
            • \n \ \n
            • .zgroup
            • \n \n
            • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-03-19_10-17-55/dicoms/1\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-07-15_11-26-50/dicoms/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n
              \n \ \n\n" @@ -738,7 +739,7 @@ interactions: cache-control: - no-cache content-length: - - '1313' + - '1314' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -781,11 +782,10 @@ interactions: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/dicom_dataset_2000-01-01_00-00-00/dicoms/1/.zattrs + uri: http://localhost:9000/data/zarr/Organization_X/dicom_dataset_2000-01-01_00-00-00/dicoms/1/.zarray response: body: - string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid - format. Expected c.x.y.z"}]}' + string: '{"dtype":"|i1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,274,384,10],"dimension_seperator":"."}' headers: access-control-allow-origin: - '*' @@ -794,7 +794,7 @@ interactions: cache-control: - no-cache content-length: - - '101' + - '162' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -803,16 +803,17 @@ interactions: x-permitted-cross-domain-policies: - master-only status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: {} method: GET - uri: http://localhost:9000/data/zarr/Organization_X/dicom_dataset_2000-01-01_00-00-00/dicoms/1/.zarray + uri: http://localhost:9000/data/zarr/Organization_X/dicom_dataset_2000-01-01_00-00-00/dicoms/1/.zattrs response: body: - string: '{"dtype":"|i1","fill_value":0,"zarr_format":2,"order":"F","chunks":[1,32,32,32],"compressor":null,"filters":null,"shape":[1,274,384,10],"dimension_seperator":"."}' + string: '{"messages":[{"error":"The requested chunk coordinates are in an invalid + format. Expected c.x.y.z"}]}' headers: access-control-allow-origin: - '*' @@ -821,7 +822,7 @@ interactions: cache-control: - no-cache content-length: - - '162' + - '101' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -830,8 +831,8 @@ interactions: x-permitted-cross-domain-policies: - master-only status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: {} @@ -925,8 +926,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-03-19_10-17-55/dicoms/1\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/dicom_dataset_2024-07-15_11-26-50/dicoms/1\u201D folder.

              \n

              The following are the contents of the folder:

              \n \n \ \n\n" @@ -947,7 +948,7 @@ interactions: cache-control: - no-cache content-length: - - '1313' + - '1314' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/cassettes/test_examples/test_upload_image_data.yaml b/webknossos/tests/cassettes/test_examples/test_upload_image_data.yaml index 1952d17c5..e8e920d13 100644 --- a/webknossos/tests/cassettes/test_examples/test_upload_image_data.yaml +++ b/webknossos/tests/cassettes/test_examples/test_upload_image_data.yaml @@ -15,7 +15,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: POST - uri: http://localhost:9000/api/v6/userToken/generate + uri: http://localhost:9000/api/v7/userToken/generate response: content: '{"token":"xxxsecrettokenxxx"}' headers: @@ -46,7 +46,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datastores + uri: http://localhost:9000/api/v7/datastores response: content: '[{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false}]' headers: @@ -77,7 +77,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: @@ -108,7 +108,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/cell_2000-01-01_00-00-00/isValidNewName + uri: http://localhost:9000/api/v7/datasets/Organization_X/cell_2000-01-01_00-00-00/isValidNewName response: content: '{"isValid":true}' headers: @@ -166,45 +166,16 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n2193\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; - name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/cell_membranes/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncell_membranes/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2193\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ncell_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n5\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n - \ \"id\": {\n \"name\": \"cell_2000-01-01_00-00-00\",\n \"team\": - \"\"\n },\n \"scale\": [\n 260.0,\n 260.0,\n 290.0\n - \ ],\n \"dataLayers\": [\n {\n \"name\": \"cell_membranes\",\n - \ \"category\": \"color\",\n \"boundingBox\": {\n \"topLeft\": - [\n 0,\n 0,\n 0\n ],\n - \ \"width\": 256,\n \"height\": 256,\n \"depth\": - 60\n },\n \"elementClass\": \"uint16\",\n \"dataFormat\": - \"wkw\",\n \"numChannels\": 1,\n \"defaultViewConfiguration\": - {\n \"color\": [\n 17,\n 212,\n - \ 17\n ],\n \"intensityRange\": - [\n 0,\n 16000\n ]\n },\n - \ \"wkwResolutions\": [\n {\n \"cubeLength\": - 1024,\n \"resolution\": [\n 1,\n 1,\n - \ 1\n ]\n }\n ]\n - \ },\n {\n \"name\": \"nuclei\",\n \"category\": - \"color\",\n \"boundingBox\": {\n \"topLeft\": [\n - \ 0,\n 0,\n 0\n ],\n - \ \"width\": 256,\n \"height\": 256,\n \"depth\": - 60\n },\n \"elementClass\": \"uint16\",\n \"dataFormat\": - \"wkw\",\n \"numChannels\": 1,\n \"defaultViewConfiguration\": - {\n \"color\": [\n 212,\n 17,\n - \ 17\n ],\n \"intensityRange\": - [\n 3000,\n 30000\n ]\n - \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": - 1024,\n \"resolution\": [\n 1,\n 1,\n - \ 1\n ]\n }\n ]\n - \ }\n ],\n \"defaultViewConfiguration\": {\n \"zoom\": 0.35\n - \ }\n}\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01U\x03\x02\x02\0\0\0\0\0\0\0\0\n----\n" headers: accept: - '*/*' @@ -213,7 +184,7 @@ interactions: connection: - keep-alive content-length: - - '3764' + - '1553' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -364,12 +335,89 @@ interactions: - master-only http_version: HTTP/1.1 status_code: 200 +- request: + body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n2264\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; + name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2264\n--\nContent-Disposition: + form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: + form-data; name=\"name\"\n\ncell_2000-01-01_00-00-00\n--\nContent-Disposition: + form-data; name=\"totalFileCount\"\n\n5\n--\nContent-Disposition: form-data; + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n + \ \"id\": {\n \"name\": \"cell_2000-01-01_00-00-00\",\n \"team\": + \"\"\n },\n \"scale\": {\n \"factor\": [\n 260.0,\n + \ 260.0,\n 290.0\n ],\n \"unit\": \"nanometer\"\n + \ },\n \"dataLayers\": [\n {\n \"name\": \"cell_membranes\",\n + \ \"category\": \"color\",\n \"boundingBox\": {\n \"topLeft\": + [\n 0,\n 0,\n 0\n ],\n + \ \"width\": 256,\n \"height\": 256,\n \"depth\": + 60\n },\n \"elementClass\": \"uint16\",\n \"dataFormat\": + \"wkw\",\n \"numChannels\": 1,\n \"defaultViewConfiguration\": + {\n \"color\": [\n 17,\n 212,\n + \ 17\n ],\n \"intensityRange\": + [\n 0,\n 16000\n ]\n },\n + \ \"wkwResolutions\": [\n {\n \"cubeLength\": + 1024,\n \"resolution\": [\n 1,\n 1,\n + \ 1\n ]\n }\n ]\n + \ },\n {\n \"name\": \"nuclei\",\n \"category\": + \"color\",\n \"boundingBox\": {\n \"topLeft\": [\n + \ 0,\n 0,\n 0\n ],\n + \ \"width\": 256,\n \"height\": 256,\n \"depth\": + 60\n },\n \"elementClass\": \"uint16\",\n \"dataFormat\": + \"wkw\",\n \"numChannels\": 1,\n \"defaultViewConfiguration\": + {\n \"color\": [\n 212,\n 17,\n + \ 17\n ],\n \"intensityRange\": + [\n 3000,\n 30000\n ]\n + \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": + 1024,\n \"resolution\": [\n 1,\n 1,\n + \ 1\n ]\n }\n ]\n + \ }\n ],\n \"defaultViewConfiguration\": {\n \"zoom\": 0.35\n + \ }\n}\n----\n" + headers: + accept: + - '*/*' + accept-encoding: + - gzip, deflate + connection: + - keep-alive + content-length: + - '3835' + content-type: + - multipart/form-data; boundary=fffffff0000000 + host: + - localhost:9000 + user-agent: + - python-httpx/0.24.1 + method: POST + uri: http://localhost:9000/data/datasets + response: + content: '' + headers: + access-control-allow-origin: + - '*' + access-control-max-age: + - '600' + cache-control: + - no-cache + content-length: + - '0' + date: Mon, 01 Jan 2000 00:00:00 GMT + referrer-policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + x-permitted-cross-domain-policies: + - master-only + http_version: HTTP/1.1 + status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/cell_membranes/1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/nuclei/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncell_membranes/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nnuclei/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -384,7 +432,7 @@ interactions: connection: - keep-alive content-length: - - '1553' + - '1537' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -535,53 +583,6 @@ interactions: - master-only http_version: HTTP/1.1 status_code: 200 -- request: - body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/nuclei/1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nnuclei/1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: - form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: - form-data; name=\"name\"\n\ncell_2000-01-01_00-00-00\n--\nContent-Disposition: - form-data; name=\"totalFileCount\"\n\n5\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01U\x03\x02\x02\0\0\0\0\0\0\0\0\n----\n" - headers: - accept: - - '*/*' - accept-encoding: - - gzip, deflate - connection: - - keep-alive - content-length: - - '1537' - content-type: - - multipart/form-data; boundary=fffffff0000000 - host: - - localhost:9000 - user-agent: - - python-httpx/0.24.1 - method: POST - uri: http://localhost:9000/data/datasets - response: - content: '' - headers: - access-control-allow-origin: - - '*' - access-control-max-age: - - '600' - cache-control: - - no-cache - content-length: - - '0' - date: Mon, 01 Jan 2000 00:00:00 GMT - referrer-policy: - - origin-when-cross-origin, strict-origin-when-cross-origin - x-permitted-cross-domain-policies: - - master-only - http_version: HTTP/1.1 - status_code: 200 - request: body: '{"uploadId": "2000-01-01T00-00-00__0011"}' headers: @@ -633,14 +634,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/cell_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/cell_2000-01-01_00-00-00 response: - content: '{"name":"cell_2024-03-14_12-23-53","dataSource":{"id":{"name":"cell_2024-03-14_12-23-53","team":"Organization_X"},"dataLayers":[{"name":"cell_membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":[260,260,290]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419035373,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419035373,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":31973009}' + content: '{"name":"cell_2024-07-15_11-25-45","dataSource":{"id":{"name":"cell_2024-07-15_11-25-45","team":"Organization_X"},"dataLayers":[{"name":"cell_membranes","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[17,212,17],"intensityRange":[0,16000]}},{"name":"nuclei","category":"color","boundingBox":{"topLeft":[0,0,0],"width":256,"height":256,"depth":60},"resolutions":[[1,1,1]],"elementClass":"uint16","defaultViewConfiguration":{"color":[212,17,17],"intensityRange":[3000,30000]}}],"scale":{"factor":[260,260,290],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042747365,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042747365,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":31973009}' headers: cache-control: - no-cache content-length: - - '1210' + - '1240' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -660,8 +661,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53\u201D + \ \n \n

              This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45\u201D folder.

              \n

              The following are the contents of the folder:

              \n
                \n \ \n
              • datasource-properties.json
              • \n \ \n
              • .zgroup
              • \n \n
              • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53\u201D + \ \n \n

                This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45\u201D folder.

                \n

                The following are the contents of the folder:

                \n
                  \n \ \n
                • datasource-properties.json
                • \n \ \n
                • .zgroup
                • \n \n
                • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                  This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53\u201D + \ \n \n

                  This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45\u201D folder.

                  \n

                  The following are the contents of the folder:

                  \n
                    \n \ \n
                  • datasource-properties.json
                  • \n \ \n
                  • .zgroup
                  • \n \n
                  • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53/cell_membranes/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45/cell_membranes/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n
                    \n \ \n\n" @@ -929,7 +930,7 @@ interactions: cache-control: - no-cache content-length: - - '1312' + - '1313' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1116,8 +1117,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53/cell_membranes/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45/cell_membranes/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1138,7 +1139,7 @@ interactions: cache-control: - no-cache content-length: - - '1312' + - '1313' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1159,8 +1160,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53/nuclei/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45/nuclei/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1181,7 +1182,7 @@ interactions: cache-control: - no-cache content-length: - - '1304' + - '1305' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1368,8 +1369,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-03-14_12-23-53/nuclei/1\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/cell_2024-07-15_11-25-45/nuclei/1\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n \n \ \n\n" @@ -1390,7 +1391,7 @@ interactions: cache-control: - no-cache content-length: - - '1304' + - '1305' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml b/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml index 9357cad2d..5f03ac73d 100644 --- a/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml +++ b/webknossos/tests/cassettes/test_examples/test_upload_tiff_stack.yaml @@ -15,7 +15,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: POST - uri: http://localhost:9000/api/v6/userToken/generate + uri: http://localhost:9000/api/v7/userToken/generate response: content: '{"token":"xxxsecrettokenxxx"}' headers: @@ -46,7 +46,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datastores + uri: http://localhost:9000/api/v7/datastores response: content: '[{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false}]' headers: @@ -77,7 +77,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: @@ -108,7 +108,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00/isValidNewName + uri: http://localhost:9000/api/v7/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00/isValidNewName response: content: '{"isValid":true}' headers: @@ -164,6 +164,53 @@ interactions: - master-only http_version: HTTP/1.1 status_code: 200 +- request: + body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ntiff/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: + form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: + form-data; name=\"name\"\n\ntiff_dataset_2000-01-01_00-00-00\n--\nContent-Disposition: + form-data; name=\"totalFileCount\"\n\n7\n--\nContent-Disposition: form-data; + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01U\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" + headers: + accept: + - '*/*' + accept-encoding: + - gzip, deflate + connection: + - keep-alive + content-length: + - '1541' + content-type: + - multipart/form-data; boundary=fffffff0000000 + host: + - localhost:9000 + user-agent: + - python-httpx/0.24.1 + method: POST + uri: http://localhost:9000/data/datasets + response: + content: '' + headers: + access-control-allow-origin: + - '*' + access-control-max-age: + - '600' + cache-control: + - no-cache + content-length: + - '0' + date: Mon, 01 Jan 2000 00:00:00 GMT + referrer-policy: + - origin-when-cross-origin, strict-origin-when-cross-origin + x-permitted-cross-domain-policies: + - master-only + http_version: HTTP/1.1 + status_code: 200 - request: body: '-- @@ -177,7 +224,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 4826377 + 5348221 -- @@ -190,7 +237,7 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/tiff/4/z0/y0/x0.wkw + 2000-01-01T00-00-00__0011/tiff/1/z0/y0/x0.wkw -- @@ -204,7 +251,7 @@ interactions: Content-Disposition: form-data; name="resumableRelativePath" - tiff/4/z0/y0/x0.wkw + tiff/1/z0/y0/x0.wkw -- @@ -225,7 +272,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 4826377 + 5348221 -- @@ -261,7 +308,7 @@ interactions: connection: - keep-alive content-length: - - '4827912' + - '5349756' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -291,9 +338,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/4/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ntiff/4/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ntiff/2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -348,7 +395,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 4882617 + 4879452 -- @@ -396,7 +443,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 4882617 + 4879452 -- @@ -432,7 +479,7 @@ interactions: connection: - keep-alive content-length: - - '4884152' + - '4880987' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -462,9 +509,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/2/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/4/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ntiff/2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ntiff/4/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -519,7 +566,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 5348221 + 4825782 -- @@ -532,7 +579,7 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/tiff/1/z0/y0/x0.wkw + 2000-01-01T00-00-00__0011/tiff/4/z0/y0/x0.wkw -- @@ -546,7 +593,7 @@ interactions: Content-Disposition: form-data; name="resumableRelativePath" - tiff/1/z0/y0/x0.wkw + tiff/4/z0/y0/x0.wkw -- @@ -567,7 +614,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 5348221 + 4825782 -- @@ -603,54 +650,7 @@ interactions: connection: - keep-alive content-length: - - '5349756' - content-type: - - multipart/form-data; boundary=fffffff0000000 - host: - - localhost:9000 - user-agent: - - python-httpx/0.24.1 - method: POST - uri: http://localhost:9000/data/datasets - response: - content: '' - headers: - access-control-allow-origin: - - '*' - access-control-max-age: - - '600' - cache-control: - - no-cache - content-length: - - '0' - date: Mon, 01 Jan 2000 00:00:00 GMT - referrer-policy: - - origin-when-cross-origin, strict-origin-when-cross-origin - x-permitted-cross-domain-policies: - - master-only - http_version: HTTP/1.1 - status_code: 200 -- request: - body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/tiff/1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ntiff/1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: - form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: - form-data; name=\"name\"\n\ntiff_dataset_2000-01-01_00-00-00\n--\nContent-Disposition: - form-data; name=\"totalFileCount\"\n\n7\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01U\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" - headers: - accept: - - '*/*' - accept-encoding: - - gzip, deflate - connection: - - keep-alive - content-length: - - '1541' + - '4827317' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -679,26 +679,27 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n1303\n--\nContent-Disposition: form-data; + form-data; name=\"resumableTotalSize\"\n\n1418\n--\nContent-Disposition: form-data; name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n1303\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n1418\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntiff_dataset_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n7\n--\nContent-Disposition: form-data; name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n \ \"id\": {\n \"name\": \"tiff_dataset_2000-01-01_00-00-00\",\n \"team\": - \"\"\n },\n \"scale\": [\n 12.0,\n 12.0,\n 12.0\n - \ ],\n \"dataLayers\": [\n {\n \"name\": \"tiff\",\n - \ \"category\": \"color\",\n \"boundingBox\": {\n \"topLeft\": - [\n 0,\n 0,\n 0\n ],\n - \ \"width\": 265,\n \"height\": 265,\n \"depth\": - 257\n },\n \"elementClass\": \"uint8\",\n \"dataFormat\": - \"wkw\",\n \"numChannels\": 1,\n \"wkwResolutions\": [\n - \ {\n \"cubeLength\": 1024,\n \"resolution\": + \"\"\n },\n \"scale\": {\n \"factor\": [\n 12.0,\n 12.0,\n + \ 12.0\n ],\n \"unit\": \"nanometer\"\n },\n \"dataLayers\": + [\n {\n \"name\": \"tiff\",\n \"category\": \"segmentation\",\n + \ \"boundingBox\": {\n \"topLeft\": [\n 0,\n + \ 0,\n 0\n ],\n \"width\": + 265,\n \"height\": 265,\n \"depth\": 257\n },\n + \ \"elementClass\": \"uint8\",\n \"dataFormat\": \"wkw\",\n + \ \"numChannels\": 1,\n \"largestSegmentId\": 255,\n \"wkwResolutions\": + [\n {\n \"cubeLength\": 1024,\n \"resolution\": [\n 1,\n 1,\n 1\n \ ]\n },\n {\n \"cubeLength\": 1024,\n \"resolution\": [\n 2,\n 2,\n @@ -714,7 +715,7 @@ interactions: connection: - keep-alive content-length: - - '2882' + - '2997' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -792,14 +793,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/tiff_dataset_2000-01-01_00-00-00 response: - content: '{"name":"tiff_dataset_2024-03-14_12-24-33","dataSource":{"id":{"name":"tiff_dataset_2024-03-14_12-24-33","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"color","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8"}],"scale":[12,12,12]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419083482,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419083482,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":15057263}' + content: '{"name":"tiff_dataset_2024-07-15_11-26-36","dataSource":{"id":{"name":"tiff_dataset_2024-07-15_11-26-36","team":"Organization_X"},"dataLayers":[{"name":"tiff","category":"segmentation","boundingBox":{"topLeft":[0,0,0],"width":265,"height":265,"depth":257},"resolutions":[[1,1,1],[2,2,2],[4,4,4]],"elementClass":"uint8","largestSegmentId":255}],"scale":{"factor":[12,12,12],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042809664,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042809664,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":15053503}' headers: cache-control: - no-cache content-length: - - '919' + - '979' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -819,8 +820,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33\u201D + \ \n \n

                    This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36\u201D folder.

                    \n

                    The following are the contents of the folder:

                    \n
                      \n \ \n
                    • datasource-properties.json
                    • \n \ \n
                    • .zgroup
                    • \n \n
                    • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                      This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33\u201D + \ \n \n

                      This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36\u201D folder.

                      \n

                      The following are the contents of the folder:

                      \n
                        \n \ \n
                      • datasource-properties.json
                      • \n \ \n
                      • .zgroup
                      • \n \n
                      • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                        This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33\u201D + \ \n \n

                        This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36\u201D folder.

                        \n

                        The following are the contents of the folder:

                        \n
                          \n \ \n
                        • datasource-properties.json
                        • \n \ \n
                        • .zgroup
                        • \n \n
                        • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n
                          \n \ \n\n" @@ -1085,7 +1086,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1272,8 +1273,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/1\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/1\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1294,7 +1295,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1315,8 +1316,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1337,7 +1338,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1524,8 +1525,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/2\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/2\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1546,7 +1547,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1567,8 +1568,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/4\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/4\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1589,7 +1590,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1776,8 +1777,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-03-14_12-24-33/tiff/4\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/tiff_dataset_2024-07-15_11-26-36/tiff/4\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n \n \ \n\n" @@ -1798,7 +1799,7 @@ interactions: cache-control: - no-cache content-length: - - '1310' + - '1311' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/cassettes/test_examples/test_user_times.yaml b/webknossos/tests/cassettes/test_examples/test_user_times.yaml index b2d3115b6..dfb6b4efc 100644 --- a/webknossos/tests/cassettes/test_examples/test_user_times.yaml +++ b/webknossos/tests/cassettes/test_examples/test_user_times.yaml @@ -13,9 +13,9 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users + uri: http://localhost:9000/api/v7/users response: - content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1710419058356,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' + content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1721042775160,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' headers: cache-control: - no-cache @@ -44,20 +44,20 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users/570b9f4d2a7c0e4d008da6ef/loggedTime + uri: http://localhost:9000/api/v7/users/570b9f4d2a7c0e4d008da6ef/loggedTime response: - content: '{"loggedTime": [{"paymentInterval": {"month": 3, "year": 2021}, "durationInSeconds": - 24}, {"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": 510}, - {"paymentInterval": {"month": 8, "year": 2018}, "durationInSeconds": 265}, {"paymentInterval": - {"month": 4, "year": 2016}, "durationInSeconds": 58}, {"paymentInterval": {"month": - 8, "year": 2021}, "durationInSeconds": 14}, {"paymentInterval": {"month": 11, - "year": 2021}, "durationInSeconds": 12}, {"paymentInterval": {"month": 5, "year": - 2021}, "durationInSeconds": 158}]}' + content: '{"loggedTime": [{"paymentInterval": {"month": 4, "year": 2016}, "durationInSeconds": + 58}, {"paymentInterval": {"month": 8, "year": 2018}, "durationInSeconds": 265}, + {"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": 112}, {"paymentInterval": + {"month": 3, "year": 2021}, "durationInSeconds": 24}, {"paymentInterval": {"month": + 5, "year": 2021}, "durationInSeconds": 158}, {"paymentInterval": {"month": 8, + "year": 2021}, "durationInSeconds": 14}, {"paymentInterval": {"month": 11, "year": + 2021}, "durationInSeconds": 12}]}' headers: cache-control: - no-cache content-length: - - '555' + - '691' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -81,7 +81,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users/670b9f4d2a7c0e4d008da6ef/loggedTime + uri: http://localhost:9000/api/v7/users/670b9f4d2a7c0e4d008da6ef/loggedTime response: content: '{"loggedTime": []}' headers: @@ -112,16 +112,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users/770b9f4d2a7c0e4d008da6ef/loggedTime + uri: http://localhost:9000/api/v7/users/770b9f4d2a7c0e4d008da6ef/loggedTime response: - content: '{"loggedTime": [{"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": - 32}, {"paymentInterval": {"month": 2, "year": 2021}, "durationInSeconds": 210}, - {"paymentInterval": {"month": 4, "year": 2016}, "durationInSeconds": 58}]}' + content: '{"loggedTime": [{"paymentInterval": {"month": 4, "year": 2016}, "durationInSeconds": + 58}, {"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": 32}, + {"paymentInterval": {"month": 2, "year": 2021}, "durationInSeconds": 210}]}' headers: cache-control: - no-cache content-length: - - '218' + - '285' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -145,7 +145,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users/870b9f4d2a7c0e4d008da6ef/loggedTime + uri: http://localhost:9000/api/v7/users/870b9f4d2a7c0e4d008da6ef/loggedTime response: content: '{"loggedTime": []}' headers: diff --git a/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml b/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml index a8c01d640..f88493c42 100644 --- a/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml +++ b/webknossos/tests/client/cassettes/test_context/test_user_organization.yaml @@ -13,7 +13,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: diff --git a/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml b/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml index e67a8b23a..8da7ae22b 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_all_managed_users.yaml @@ -13,9 +13,9 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users + uri: http://localhost:9000/api/v7/users response: - content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1710419097442,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' + content: '[{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1721042831803,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"670b9f4d2a7c0e4d008da6ef","email":"user_B@scalableminds.com","firstName":"user_B","lastName":"BoyB","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true}],"experiences":{},"lastActivity":1460465869053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"770b9f4d2a7c0e4d008da6ef","email":"user_C@scalableminds.com","firstName":"user_C","lastName":"BoyC","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":false}],"experiences":{},"lastActivity":1460552269053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true},{"id":"870b9f4d2a7c0e4d008da6ef","email":"user_D@scalableminds.com","firstName":"user_D","lastName":"BoyD","isAdmin":false,"isOrganizationOwner":false,"isDatasetManager":false,"isActive":true,"teams":[{"id":"69882b370d889b84020efd4f","name":"team_X2","isTeamManager":true}],"experiences":{},"lastActivity":1460638669053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"light","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}]' headers: cache-control: - no-cache diff --git a/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml b/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml index a8c01d640..f88493c42 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_current_user.yaml @@ -13,7 +13,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: diff --git a/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml b/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml index 92caf36d6..3dbe4f317 100644 --- a/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml +++ b/webknossos/tests/client/cassettes/test_user/test_get_logged_time.yaml @@ -13,7 +13,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: @@ -44,20 +44,20 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/users/570b9f4d2a7c0e4d008da6ef/loggedTime + uri: http://localhost:9000/api/v7/users/570b9f4d2a7c0e4d008da6ef/loggedTime response: - content: '{"loggedTime": [{"paymentInterval": {"month": 3, "year": 2021}, "durationInSeconds": - 24}, {"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": 510}, - {"paymentInterval": {"month": 8, "year": 2018}, "durationInSeconds": 265}, {"paymentInterval": - {"month": 4, "year": 2016}, "durationInSeconds": 58}, {"paymentInterval": {"month": - 8, "year": 2021}, "durationInSeconds": 14}, {"paymentInterval": {"month": 11, - "year": 2021}, "durationInSeconds": 12}, {"paymentInterval": {"month": 5, "year": - 2021}, "durationInSeconds": 158}]}' + content: '{"loggedTime": [{"paymentInterval": {"month": 4, "year": 2016}, "durationInSeconds": + 58}, {"paymentInterval": {"month": 8, "year": 2018}, "durationInSeconds": 265}, + {"paymentInterval": {"month": 1, "year": 2021}, "durationInSeconds": 112}, {"paymentInterval": + {"month": 3, "year": 2021}, "durationInSeconds": 24}, {"paymentInterval": {"month": + 5, "year": 2021}, "durationInSeconds": 158}, {"paymentInterval": {"month": 8, + "year": 2021}, "durationInSeconds": 14}, {"paymentInterval": {"month": 11, "year": + 2021}, "durationInSeconds": 12}]}' headers: cache-control: - no-cache content-length: - - '555' + - '691' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml index 67cb8bd2a..0ed95338d 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_remote_dataset.yaml @@ -15,7 +15,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: POST - uri: http://localhost:9000/api/v6/userToken/generate + uri: http://localhost:9000/api/v7/userToken/generate response: content: '{"token":"xxxsecrettokenxxx"}' headers: @@ -46,7 +46,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datastores + uri: http://localhost:9000/api/v7/datastores response: content: '[{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false}]' headers: @@ -77,7 +77,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: @@ -108,7 +108,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/isValidNewName + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/isValidNewName response: content: '{"isValid":true}' headers: @@ -166,52 +166,16 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n2781\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; - name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2781\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_remote_metadata_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n - \ \"id\": {\n \"name\": \"l4_sample_dev\",\n \"team\": \"\"\n - \ },\n \"scale\": [\n 11.239999771118164,\n 11.239999771118164,\n - \ 28.0\n ],\n \"dataLayers\": [\n {\n \"name\": - \"color\",\n \"category\": \"color\",\n \"boundingBox\": - {\n \"topLeft\": [\n 2807,\n 4352,\n - \ 1794\n ],\n \"width\": 10,\n - \ \"height\": 10,\n \"depth\": 10\n },\n - \ \"elementClass\": \"uint8\",\n \"dataFormat\": \"wkw\",\n - \ \"numChannels\": 1,\n \"defaultViewConfiguration\": {\n - \ \"color\": [\n 255,\n 219,\n - \ 219\n ],\n \"intensityRange\": - [\n 70.0,\n 180.0\n ]\n - \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 1,\n 1,\n - \ 1\n ]\n },\n {\n - \ \"cubeLength\": 512,\n \"resolution\": - [\n 2,\n 2,\n 1\n - \ ]\n },\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 4,\n 4,\n - \ 2\n ]\n }\n ]\n - \ },\n {\n \"name\": \"segmentation\",\n \"category\": - \"segmentation\",\n \"boundingBox\": {\n \"topLeft\": - [\n 2807,\n 4352,\n 1794\n - \ ],\n \"width\": 10,\n \"height\": - 10,\n \"depth\": 10\n },\n \"elementClass\": - \"uint32\",\n \"dataFormat\": \"wkw\",\n \"numChannels\": - 1,\n \"largestSegmentId\": 5238529,\n \"wkwResolutions\": - [\n {\n \"cubeLength\": 512,\n \"resolution\": - [\n 1,\n 1,\n 1\n - \ ]\n },\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 2,\n 2,\n - \ 1\n ]\n },\n {\n - \ \"cubeLength\": 512,\n \"resolution\": - [\n 4,\n 4,\n 2\n - \ ]\n }\n ]\n }\n ]\n}\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" headers: accept: - '*/*' @@ -220,7 +184,7 @@ interactions: connection: - keep-alive content-length: - - '4369' + - '1560' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -260,7 +224,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 603665 + 602286 -- @@ -273,21 +237,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/1/z3/y8/x5.wkw + 2000-01-01T00-00-00__0011/color/4-4-2/z1/y2/x1.wkw -- Content-Disposition: form-data; name="resumableFilename" - x5.wkw + x1.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/1/z3/y8/x5.wkw + color/4-4-2/z1/y2/x1.wkw -- @@ -308,7 +272,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 603665 + 602286 -- @@ -344,7 +308,7 @@ interactions: connection: - keep-alive content-length: - - '605209' + - '603838' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -374,9 +338,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -391,7 +355,7 @@ interactions: connection: - keep-alive content-length: - - '1552' + - '1560' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -431,7 +395,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 602286 + 602731 -- @@ -444,21 +408,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/4-4-2/z1/y2/x1.wkw + 2000-01-01T00-00-00__0011/color/2-2-1/z3/y4/x2.wkw -- Content-Disposition: form-data; name="resumableFilename" - x1.wkw + x2.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/4-4-2/z1/y2/x1.wkw + color/2-2-1/z3/y4/x2.wkw -- @@ -479,7 +443,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 602286 + 602731 -- @@ -515,7 +479,7 @@ interactions: connection: - keep-alive content-length: - - '603838' + - '604283' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -545,9 +509,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/4-4-2/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -562,7 +526,7 @@ interactions: connection: - keep-alive content-length: - - '1560' + - '1552' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -602,7 +566,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 602731 + 603665 -- @@ -615,21 +579,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/2-2-1/z3/y4/x2.wkw + 2000-01-01T00-00-00__0011/color/1/z3/y8/x5.wkw -- Content-Disposition: form-data; name="resumableFilename" - x2.wkw + x5.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/2-2-1/z3/y4/x2.wkw + color/1/z3/y8/x5.wkw -- @@ -650,7 +614,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 602731 + 603665 -- @@ -686,7 +650,7 @@ interactions: connection: - keep-alive content-length: - - '604283' + - '605209' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -716,15 +680,15 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/2-2-1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/2-2-1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_remote_metadata_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x03\x04\0\0\0\0\0\0\0\0\n----\n" headers: accept: - '*/*' @@ -733,7 +697,7 @@ interactions: connection: - keep-alive content-length: - - '1560' + - '1574' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -773,7 +737,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179295 + 2179159 -- @@ -786,21 +750,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/1/z3/y8/x5.wkw + 2000-01-01T00-00-00__0011/segmentation/4-4-2/z1/y2/x1.wkw -- Content-Disposition: form-data; name="resumableFilename" - x5.wkw + x1.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/1/z3/y8/x5.wkw + segmentation/4-4-2/z1/y2/x1.wkw -- @@ -821,7 +785,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179295 + 2179159 -- @@ -857,7 +821,7 @@ interactions: connection: - keep-alive content-length: - - '2180855' + - '2180727' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -887,9 +851,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -904,7 +868,7 @@ interactions: connection: - keep-alive content-length: - - '1566' + - '1574' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -944,7 +908,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179159 + 2179219 -- @@ -957,21 +921,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/4-4-2/z1/y2/x1.wkw + 2000-01-01T00-00-00__0011/segmentation/2-2-1/z3/y4/x2.wkw -- Content-Disposition: form-data; name="resumableFilename" - x1.wkw + x2.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/4-4-2/z1/y2/x1.wkw + segmentation/2-2-1/z3/y4/x2.wkw -- @@ -992,7 +956,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179159 + 2179219 -- @@ -1028,7 +992,7 @@ interactions: connection: - keep-alive content-length: - - '2180727' + - '2180787' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1058,9 +1022,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/4-4-2/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -1075,7 +1039,7 @@ interactions: connection: - keep-alive content-length: - - '1574' + - '1566' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1115,7 +1079,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179219 + 2179295 -- @@ -1128,21 +1092,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/2-2-1/z3/y4/x2.wkw + 2000-01-01T00-00-00__0011/segmentation/1/z3/y8/x5.wkw -- Content-Disposition: form-data; name="resumableFilename" - x2.wkw + x5.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/2-2-1/z3/y4/x2.wkw + segmentation/1/z3/y8/x5.wkw -- @@ -1163,7 +1127,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179219 + 2179295 -- @@ -1199,7 +1163,7 @@ interactions: connection: - keep-alive content-length: - - '2180787' + - '2180855' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1228,16 +1192,53 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/2-2-1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/2-2-1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n2852\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; + name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2852\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_remote_metadata_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x03\x04\0\0\0\0\0\0\0\0\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n + \ \"id\": {\n \"name\": \"l4_sample_dev\",\n \"team\": \"\"\n + \ },\n \"scale\": {\n \"factor\": [\n 11.239999771118164,\n + \ 11.239999771118164,\n 28.0\n ],\n \"unit\": + \"nanometer\"\n },\n \"dataLayers\": [\n {\n \"name\": + \"color\",\n \"category\": \"color\",\n \"boundingBox\": + {\n \"topLeft\": [\n 2807,\n 4352,\n + \ 1794\n ],\n \"width\": 10,\n + \ \"height\": 10,\n \"depth\": 10\n },\n + \ \"elementClass\": \"uint8\",\n \"dataFormat\": \"wkw\",\n + \ \"numChannels\": 1,\n \"defaultViewConfiguration\": {\n + \ \"color\": [\n 255,\n 219,\n + \ 219\n ],\n \"intensityRange\": + [\n 70.0,\n 180.0\n ]\n + \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 1,\n 1,\n + \ 1\n ]\n },\n {\n + \ \"cubeLength\": 512,\n \"resolution\": + [\n 2,\n 2,\n 1\n + \ ]\n },\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 4,\n 4,\n + \ 2\n ]\n }\n ]\n + \ },\n {\n \"name\": \"segmentation\",\n \"category\": + \"segmentation\",\n \"boundingBox\": {\n \"topLeft\": + [\n 2807,\n 4352,\n 1794\n + \ ],\n \"width\": 10,\n \"height\": + 10,\n \"depth\": 10\n },\n \"elementClass\": + \"uint32\",\n \"dataFormat\": \"wkw\",\n \"numChannels\": + 1,\n \"largestSegmentId\": 5238529,\n \"wkwResolutions\": + [\n {\n \"cubeLength\": 512,\n \"resolution\": + [\n 1,\n 1,\n 1\n + \ ]\n },\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 2,\n 2,\n + \ 1\n ]\n },\n {\n + \ \"cubeLength\": 512,\n \"resolution\": + [\n 4,\n 4,\n 2\n + \ ]\n }\n ]\n }\n ]\n}\n----\n" headers: accept: - '*/*' @@ -1246,7 +1247,7 @@ interactions: connection: - keep-alive content-length: - - '1574' + - '4440' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1324,14 +1325,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1351,8 +1352,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08\u201D + \ \n \n

                          This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26\u201D folder.

                          \n

                          The following are the contents of the folder:

                          \n
                            \n \ \n
                          • datasource-properties.json
                          • \n \ \n
                          • .zgroup
                          • \n \n
                          • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                            This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08\u201D + \ \n \n

                            This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26\u201D folder.

                            \n

                            The following are the contents of the folder:

                            \n
                              \n \ \n
                            • datasource-properties.json
                            • \n \ \n
                            • .zgroup
                            • \n \n
                            • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                              This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08\u201D + \ \n \n

                              This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26\u201D folder.

                              \n

                              The following are the contents of the folder:

                              \n
                                \n \ \n
                              • datasource-properties.json
                              • \n \ \n
                              • .zgroup
                              • \n \n
                              • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n
                                \n \ \n\n" @@ -1620,7 +1621,7 @@ interactions: cache-control: - no-cache content-length: - - '1319' + - '1320' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1807,8 +1808,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -1829,7 +1830,7 @@ interactions: cache-control: - no-cache content-length: - - '1319' + - '1320' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1850,8 +1851,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -1872,7 +1873,7 @@ interactions: cache-control: - no-cache content-length: - - '1323' + - '1324' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2059,8 +2060,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2081,7 +2082,7 @@ interactions: cache-control: - no-cache content-length: - - '1323' + - '1324' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2102,8 +2103,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2124,7 +2125,7 @@ interactions: cache-control: - no-cache content-length: - - '1323' + - '1324' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2311,8 +2312,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/color/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/color/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2333,7 +2334,7 @@ interactions: cache-control: - no-cache content-length: - - '1323' + - '1324' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2354,8 +2355,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2376,7 +2377,7 @@ interactions: cache-control: - no-cache content-length: - - '1326' + - '1327' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2563,8 +2564,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2585,7 +2586,7 @@ interactions: cache-control: - no-cache content-length: - - '1326' + - '1327' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2606,8 +2607,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2628,7 +2629,7 @@ interactions: cache-control: - no-cache content-length: - - '1330' + - '1331' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2815,8 +2816,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/2-2-1\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/2-2-1\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2837,7 +2838,7 @@ interactions: cache-control: - no-cache content-length: - - '1330' + - '1331' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2858,8 +2859,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -2880,7 +2881,7 @@ interactions: cache-control: - no-cache content-length: - - '1330' + - '1331' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -3067,8 +3068,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-03-14_12-25-08/segmentation/4-4-2\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_remote_metadata_2024-07-15_11-27-26/segmentation/4-4-2\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n \n \ \n\n" @@ -3089,7 +3090,7 @@ interactions: cache-control: - no-cache content-length: - - '1330' + - '1331' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4401,14 +4402,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4432,14 +4433,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4460,9 +4461,9 @@ interactions: [70, 180]}}, {"name": "segmentation", "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": - 5238529, "defaultViewConfiguration": null}], "status": null, "scale": [11.239999771118164, - 11.239999771118164, 28.0]}, "displayName": "Test Remote Dataset", "description": - null}' + 5238529, "defaultViewConfiguration": null}], "status": null, "scale": {"factor": + [11.239999771118164, 11.239999771118164, 28.0], "unit": "nanometer"}}, "displayName": + "Test Remote Dataset", "description": null}' headers: accept: - '*/*' @@ -4471,7 +4472,7 @@ interactions: connection: - keep-alive content-length: - - '992' + - '1025' content-type: - application/json host: @@ -4479,15 +4480,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1285' + - '1315' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4511,15 +4512,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1285' + - '1315' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4543,15 +4544,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test - Remote Dataset","created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":"Test + Remote Dataset","created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1285' + - '1315' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4572,8 +4573,9 @@ interactions: [70, 180]}}, {"name": "segmentation", "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": - 5238529, "defaultViewConfiguration": null}], "status": null, "scale": [11.239999771118164, - 11.239999771118164, 28.0]}, "displayName": null, "description": null}' + 5238529, "defaultViewConfiguration": null}], "status": null, "scale": {"factor": + [11.239999771118164, 11.239999771118164, 28.0], "unit": "nanometer"}}, "displayName": + null, "description": null}' headers: accept: - '*/*' @@ -4582,7 +4584,7 @@ interactions: connection: - keep-alive content-length: - - '975' + - '1008' content-type: - application/json host: @@ -4590,14 +4592,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4621,14 +4623,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4652,14 +4654,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4683,14 +4685,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4711,9 +4713,9 @@ interactions: [70, 180]}}, {"name": "segmentation", "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": - 5238529, "defaultViewConfiguration": null}], "status": null, "scale": [11.239999771118164, - 11.239999771118164, 28.0]}, "displayName": null, "description": "My awesome - test description"}' + 5238529, "defaultViewConfiguration": null}], "status": null, "scale": {"factor": + [11.239999771118164, 11.239999771118164, 28.0], "unit": "nanometer"}}, "displayName": + null, "description": "My awesome test description"}' headers: accept: - '*/*' @@ -4722,7 +4724,7 @@ interactions: connection: - keep-alive content-length: - - '1000' + - '1033' content-type: - application/json host: @@ -4730,15 +4732,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1293' + - '1323' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4762,15 +4764,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1293' + - '1323' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4794,15 +4796,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My - awesome test description","displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":"My + awesome test description","displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1293' + - '1323' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4823,8 +4825,9 @@ interactions: [70, 180]}}, {"name": "segmentation", "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": - 5238529, "defaultViewConfiguration": null}], "status": null, "scale": [11.239999771118164, - 11.239999771118164, 28.0]}, "displayName": null, "description": null}' + 5238529, "defaultViewConfiguration": null}], "status": null, "scale": {"factor": + [11.239999771118164, 11.239999771118164, 28.0], "unit": "nanometer"}}, "displayName": + null, "description": null}' headers: accept: - '*/*' @@ -4833,7 +4836,7 @@ interactions: connection: - keep-alive content-length: - - '975' + - '1008' content-type: - application/json host: @@ -4841,14 +4844,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4872,14 +4875,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4903,14 +4906,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4934,14 +4937,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1268' + - '1298' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -4962,8 +4965,9 @@ interactions: [70, 180]}}, {"name": "segmentation", "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": - 5238529, "defaultViewConfiguration": null}], "status": null, "scale": [11.239999771118164, - 11.239999771118164, 28.0]}, "displayName": null, "description": null}' + 5238529, "defaultViewConfiguration": null}], "status": null, "scale": {"factor": + [11.239999771118164, 11.239999771118164, 28.0], "unit": "nanometer"}}, "displayName": + null, "description": null}' headers: accept: - '*/*' @@ -4972,7 +4976,7 @@ interactions: connection: - keep-alive content-length: - - '974' + - '1007' content-type: - application/json host: @@ -4980,14 +4984,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1267' + - '1297' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5011,14 +5015,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1267' + - '1297' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5042,14 +5046,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1267' + - '1297' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5073,14 +5077,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1267' + - '1297' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5104,14 +5108,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1267' + - '1297' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5133,8 +5137,8 @@ interactions: "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": 5238529, "defaultViewConfiguration": null}], "status": - null, "scale": [11.239999771118164, 11.239999771118164, 28.0]}, "displayName": - null, "description": null}' + null, "scale": {"factor": [11.239999771118164, 11.239999771118164, 28.0], "unit": + "nanometer"}}, "displayName": null, "description": null}' headers: accept: - '*/*' @@ -5143,7 +5147,7 @@ interactions: connection: - keep-alive content-length: - - '986' + - '1019' content-type: - application/json host: @@ -5151,15 +5155,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1279' + - '1309' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5183,15 +5187,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1279' + - '1309' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5215,15 +5219,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1279' + - '1309' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5245,8 +5249,8 @@ interactions: "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": 5238529, "defaultViewConfiguration": - null}], "status": null, "scale": [11.239999771118164, 11.239999771118164, 28.0]}, - "displayName": null, "description": null}' + null}], "status": null, "scale": {"factor": [11.239999771118164, 11.239999771118164, + 28.0], "unit": "nanometer"}}, "displayName": null, "description": null}' headers: accept: - '*/*' @@ -5255,7 +5259,7 @@ interactions: connection: - keep-alive content-length: - - '1000' + - '1033' content-type: - application/json host: @@ -5263,15 +5267,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1292' + - '1322' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5295,15 +5299,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1292' + - '1322' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5327,15 +5331,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1292' + - '1322' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5357,8 +5361,8 @@ interactions: "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": 5238529, "defaultViewConfiguration": - null}], "status": null, "scale": [11.239999771118164, 11.239999771118164, 28.0]}, - "displayName": null, "description": null}' + null}], "status": null, "scale": {"factor": [11.239999771118164, 11.239999771118164, + 28.0], "unit": "nanometer"}}, "displayName": null, "description": null}' headers: accept: - '*/*' @@ -5367,7 +5371,7 @@ interactions: connection: - keep-alive content-length: - - '1014' + - '1047' content-type: - application/json host: @@ -5375,15 +5379,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1305' + - '1335' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5407,15 +5411,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1305' + - '1335' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5439,9 +5443,9 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/sharingToken + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/sharingToken response: - content: '{"sharingToken":"VEwIEJilcWyzrETwqIwhmQ"}' + content: '{"sharingToken":"5nNxY1rK2ceExQuLQjrJcA"}' headers: cache-control: - no-cache @@ -5470,15 +5474,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1305' + - '1335' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5502,7 +5506,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/teams + uri: http://localhost:9000/api/v7/teams response: content: '[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"},{"id":"59882b370d889b84020efd3f","name":"team_X3","organization":"Organization_X"},{"id":"59882b370d889b84020efd6f","name":"team_X4","organization":"Organization_X"},{"id":"69882b370d889b84020efd4f","name":"team_X2","organization":"Organization_X"}]' headers: @@ -5537,7 +5541,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams response: content: '["570b9f4b2a7c0e3b008da6ec"]' headers: @@ -5568,15 +5572,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1469' + - '1499' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5604,7 +5608,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00/teams response: content: '["570b9f4b2a7c0e3b008da6ec"]' headers: @@ -5635,15 +5639,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1469' + - '1499' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5667,7 +5671,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/folders/tree + uri: http://localhost:9000/api/v7/folders/tree response: content: '[{"id":"570b9f4e4bb848d08880712a","name":"A subfolder!","parent":"570b9f4e4bb848d0885ea917","isEditable":true},{"id":"570b9f4e4bb848d08880712b","name":"Another subfolder!","parent":"570b9f4e4bb848d0885ea917","isEditable":true},{"id":"570b9f4e4bb848d0885ea917","name":"Organization_X","parent":null,"isEditable":true}]' @@ -5699,15 +5703,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1469' + - '1499' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5730,8 +5734,8 @@ interactions: "category": "segmentation", "elementClass": "uint32", "boundingBox": {"topLeft": [2807, 4352, 1794], "width": 10, "height": 10, "depth": 10}, "resolutions": [[1, 1, 1], [2, 2, 1], [4, 4, 2]], "largestSegmentId": 5238529, "defaultViewConfiguration": - null}], "status": null, "scale": [11.239999771118164, 11.239999771118164, 28.0]}, - "displayName": null, "description": null}' + null}], "status": null, "scale": {"factor": [11.239999771118164, 11.239999771118164, + 28.0], "unit": "nanometer"}}, "displayName": null, "description": null}' headers: accept: - '*/*' @@ -5740,7 +5744,7 @@ interactions: connection: - keep-alive content-length: - - '1101' + - '1134' content-type: - application/json host: @@ -5748,15 +5752,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: PATCH - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d08880712a","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1469' + - '1499' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5780,15 +5784,15 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_remote_metadata_2000-01-01_00-00-00 response: - content: '{"name":"test_remote_metadata_2024-03-14_12-25-08","dataSource":{"id":{"name":"test_remote_metadata_2024-03-14_12-25-08","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1710419109142,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419109142,"details":null,"isUnreported":false,"tags":["category + content: '{"name":"test_remote_metadata_2024-07-15_11-27-26","dataSource":{"id":{"name":"test_remote_metadata_2024-07-15_11-27-26","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"allowedTeamsCumulative":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","organization":"Organization_X"}],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1721042846594,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042846594,"details":null,"isUnreported":false,"tags":["category 0","category 1","category 2"],"folderId":"570b9f4e4bb848d08880712a","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1469' + - '1499' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -5812,7 +5816,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/folders/tree + uri: http://localhost:9000/api/v7/folders/tree response: content: '[{"id":"570b9f4e4bb848d08880712a","name":"A subfolder!","parent":"570b9f4e4bb848d0885ea917","isEditable":true},{"id":"570b9f4e4bb848d08880712b","name":"Another subfolder!","parent":"570b9f4e4bb848d0885ea917","isEditable":true},{"id":"570b9f4e4bb848d0885ea917","name":"Organization_X","parent":null,"isEditable":true}]' diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml index 956044f71..72f327ffe 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_upload_download_roundtrip.yaml @@ -15,7 +15,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: POST - uri: http://localhost:9000/api/v6/userToken/generate + uri: http://localhost:9000/api/v7/userToken/generate response: content: '{"token":"xxxsecrettokenxxx"}' headers: @@ -46,7 +46,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datastores + uri: http://localhost:9000/api/v7/datastores response: content: '[{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false}]' headers: @@ -77,7 +77,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/user + uri: http://localhost:9000/api/v7/user response: content: '{"id":"570b9f4d2a7c0e4d008da6ef","email":"user_A@scalableminds.com","firstName":"user_A","lastName":"BoyA","isAdmin":true,"isOrganizationOwner":true,"isDatasetManager":true,"isActive":true,"teams":[{"id":"570b9f4b2a7c0e3b008da6ec","name":"team_X1","isTeamManager":true},{"id":"59882b370d889b84020efd3f","name":"team_X3","isTeamManager":false},{"id":"59882b370d889b84020efd6f","name":"team_X4","isTeamManager":true}],"experiences":{"abc":5},"lastActivity":1460379469053,"isAnonymous":false,"isEditable":true,"organization":"Organization_X","novelUserExperienceInfos":{},"selectedTheme":"auto","created":1460379469000,"lastTaskTypeId":null,"isSuperUser":true,"isEmailVerified":true}' headers: @@ -108,7 +108,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/isValidNewName + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00/isValidNewName response: content: '{"isValid":true}' headers: @@ -166,52 +166,16 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n2781\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; - name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2781\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_upload_download_roundtrip_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n - \ \"id\": {\n \"name\": \"l4_sample_dev\",\n \"team\": \"\"\n - \ },\n \"scale\": [\n 11.239999771118164,\n 11.239999771118164,\n - \ 28.0\n ],\n \"dataLayers\": [\n {\n \"name\": - \"color\",\n \"category\": \"color\",\n \"boundingBox\": - {\n \"topLeft\": [\n 2807,\n 4352,\n - \ 1794\n ],\n \"width\": 10,\n - \ \"height\": 10,\n \"depth\": 10\n },\n - \ \"elementClass\": \"uint8\",\n \"dataFormat\": \"wkw\",\n - \ \"numChannels\": 1,\n \"defaultViewConfiguration\": {\n - \ \"color\": [\n 255,\n 219,\n - \ 219\n ],\n \"intensityRange\": - [\n 70.0,\n 180.0\n ]\n - \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 1,\n 1,\n - \ 1\n ]\n },\n {\n - \ \"cubeLength\": 512,\n \"resolution\": - [\n 2,\n 2,\n 1\n - \ ]\n },\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 4,\n 4,\n - \ 2\n ]\n }\n ]\n - \ },\n {\n \"name\": \"segmentation\",\n \"category\": - \"segmentation\",\n \"boundingBox\": {\n \"topLeft\": - [\n 2807,\n 4352,\n 1794\n - \ ],\n \"width\": 10,\n \"height\": - 10,\n \"depth\": 10\n },\n \"elementClass\": - \"uint32\",\n \"dataFormat\": \"wkw\",\n \"numChannels\": - 1,\n \"largestSegmentId\": 5238529,\n \"wkwResolutions\": - [\n {\n \"cubeLength\": 512,\n \"resolution\": - [\n 1,\n 1,\n 1\n - \ ]\n },\n {\n \"cubeLength\": - 512,\n \"resolution\": [\n 2,\n 2,\n - \ 1\n ]\n },\n {\n - \ \"cubeLength\": 512,\n \"resolution\": - [\n 4,\n 4,\n 2\n - \ ]\n }\n ]\n }\n ]\n}\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" headers: accept: - '*/*' @@ -220,7 +184,7 @@ interactions: connection: - keep-alive content-length: - - '4379' + - '1570' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -260,7 +224,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 603665 + 602286 -- @@ -273,21 +237,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/1/z3/y8/x5.wkw + 2000-01-01T00-00-00__0011/color/4-4-2/z1/y2/x1.wkw -- Content-Disposition: form-data; name="resumableFilename" - x5.wkw + x1.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/1/z3/y8/x5.wkw + color/4-4-2/z1/y2/x1.wkw -- @@ -308,7 +272,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 603665 + 602286 -- @@ -344,7 +308,7 @@ interactions: connection: - keep-alive content-length: - - '605219' + - '603848' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -374,9 +338,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -391,7 +355,7 @@ interactions: connection: - keep-alive content-length: - - '1562' + - '1570' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -431,7 +395,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 602286 + 602731 -- @@ -444,21 +408,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/4-4-2/z1/y2/x1.wkw + 2000-01-01T00-00-00__0011/color/2-2-1/z3/y4/x2.wkw -- Content-Disposition: form-data; name="resumableFilename" - x1.wkw + x2.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/4-4-2/z1/y2/x1.wkw + color/2-2-1/z3/y4/x2.wkw -- @@ -479,7 +443,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 602286 + 602731 -- @@ -515,7 +479,7 @@ interactions: connection: - keep-alive content-length: - - '603848' + - '604293' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -545,9 +509,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/4-4-2/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ncolor/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -562,7 +526,7 @@ interactions: connection: - keep-alive content-length: - - '1570' + - '1562' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -602,7 +566,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 602731 + 603665 -- @@ -615,21 +579,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/color/2-2-1/z3/y4/x2.wkw + 2000-01-01T00-00-00__0011/color/1/z3/y8/x5.wkw -- Content-Disposition: form-data; name="resumableFilename" - x2.wkw + x5.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - color/2-2-1/z3/y4/x2.wkw + color/1/z3/y8/x5.wkw -- @@ -650,7 +614,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 602731 + 603665 -- @@ -686,7 +650,7 @@ interactions: connection: - keep-alive content-length: - - '604293' + - '605219' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -716,15 +680,15 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/color/2-2-1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\ncolor/2-2-1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/4-4-2/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_upload_download_roundtrip_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x01\x01\0\0\0\0\0\0\0\0\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x03\x04\0\0\0\0\0\0\0\0\n----\n" headers: accept: - '*/*' @@ -733,7 +697,7 @@ interactions: connection: - keep-alive content-length: - - '1570' + - '1584' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -773,7 +737,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179295 + 2179159 -- @@ -786,21 +750,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/1/z3/y8/x5.wkw + 2000-01-01T00-00-00__0011/segmentation/4-4-2/z1/y2/x1.wkw -- Content-Disposition: form-data; name="resumableFilename" - x5.wkw + x1.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/1/z3/y8/x5.wkw + segmentation/4-4-2/z1/y2/x1.wkw -- @@ -821,7 +785,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179295 + 2179159 -- @@ -857,7 +821,7 @@ interactions: connection: - keep-alive content-length: - - '2180865' + - '2180737' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -887,9 +851,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/1/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/2-2-1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -904,7 +868,7 @@ interactions: connection: - keep-alive content-length: - - '1576' + - '1584' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -944,7 +908,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179159 + 2179219 -- @@ -957,21 +921,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/4-4-2/z1/y2/x1.wkw + 2000-01-01T00-00-00__0011/segmentation/2-2-1/z3/y4/x2.wkw -- Content-Disposition: form-data; name="resumableFilename" - x1.wkw + x2.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/4-4-2/z1/y2/x1.wkw + segmentation/2-2-1/z3/y4/x2.wkw -- @@ -992,7 +956,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179159 + 2179219 -- @@ -1028,7 +992,7 @@ interactions: connection: - keep-alive content-length: - - '2180737' + - '2180797' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1058,9 +1022,9 @@ interactions: - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/4-4-2/header.wkw\n--\nContent-Disposition: + name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/4-4-2/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\nsegmentation/1/header.wkw\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: @@ -1075,7 +1039,7 @@ interactions: connection: - keep-alive content-length: - - '1584' + - '1576' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1115,7 +1079,7 @@ interactions: Content-Disposition: form-data; name="resumableTotalSize" - 2179219 + 2179295 -- @@ -1128,21 +1092,21 @@ interactions: Content-Disposition: form-data; name="resumableIdentifier" - 2000-01-01T00-00-00__0011/segmentation/2-2-1/z3/y4/x2.wkw + 2000-01-01T00-00-00__0011/segmentation/1/z3/y8/x5.wkw -- Content-Disposition: form-data; name="resumableFilename" - x2.wkw + x5.wkw -- Content-Disposition: form-data; name="resumableRelativePath" - segmentation/2-2-1/z3/y4/x2.wkw + segmentation/1/z3/y8/x5.wkw -- @@ -1163,7 +1127,7 @@ interactions: Content-Disposition: form-data; name="resumableCurrentChunkSize" - 2179219 + 2179295 -- @@ -1199,7 +1163,7 @@ interactions: connection: - keep-alive content-length: - - '2180797' + - '2180865' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1228,16 +1192,53 @@ interactions: status_code: 200 - request: body: "--\nContent-Disposition: form-data; name=\"resumableChunkSize\"\n\n104857600\n--\nContent-Disposition: - form-data; name=\"resumableTotalSize\"\n\n16\n--\nContent-Disposition: form-data; - name=\"resumableType\"\n\n\n--\nContent-Disposition: form-data; name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/segmentation/2-2-1/header.wkw\n--\nContent-Disposition: - form-data; name=\"resumableFilename\"\n\nheader.wkw\n--\nContent-Disposition: - form-data; name=\"resumableRelativePath\"\n\nsegmentation/2-2-1/header.wkw\n--\nContent-Disposition: + form-data; name=\"resumableTotalSize\"\n\n2852\n--\nContent-Disposition: form-data; + name=\"resumableType\"\n\napplication/json\n--\nContent-Disposition: form-data; + name=\"resumableIdentifier\"\n\n2000-01-01T00-00-00__0011/datasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableFilename\"\n\ndatasource-properties.json\n--\nContent-Disposition: + form-data; name=\"resumableRelativePath\"\n\ndatasource-properties.json\n--\nContent-Disposition: form-data; name=\"resumableTotalChunks\"\n\n1\n--\nContent-Disposition: form-data; - name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n16\n--\nContent-Disposition: + name=\"resumableChunkNumber\"\n\n1\n--\nContent-Disposition: form-data; name=\"resumableCurrentChunkSize\"\n\n2852\n--\nContent-Disposition: form-data; name=\"owningOrganization\"\n\nOrganization_X\n--\nContent-Disposition: form-data; name=\"name\"\n\ntest_upload_download_roundtrip_2000-01-01_00-00-00\n--\nContent-Disposition: form-data; name=\"totalFileCount\"\n\n13\n--\nContent-Disposition: form-data; - name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\nWKW\x01E\x03\x03\x04\0\0\0\0\0\0\0\0\n----\n" + name=\"file\"; filename=\"upload\"\nContent-Type: application/octet-stream\n\n{\n + \ \"id\": {\n \"name\": \"l4_sample_dev\",\n \"team\": \"\"\n + \ },\n \"scale\": {\n \"factor\": [\n 11.239999771118164,\n + \ 11.239999771118164,\n 28.0\n ],\n \"unit\": + \"nanometer\"\n },\n \"dataLayers\": [\n {\n \"name\": + \"color\",\n \"category\": \"color\",\n \"boundingBox\": + {\n \"topLeft\": [\n 2807,\n 4352,\n + \ 1794\n ],\n \"width\": 10,\n + \ \"height\": 10,\n \"depth\": 10\n },\n + \ \"elementClass\": \"uint8\",\n \"dataFormat\": \"wkw\",\n + \ \"numChannels\": 1,\n \"defaultViewConfiguration\": {\n + \ \"color\": [\n 255,\n 219,\n + \ 219\n ],\n \"intensityRange\": + [\n 70.0,\n 180.0\n ]\n + \ },\n \"wkwResolutions\": [\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 1,\n 1,\n + \ 1\n ]\n },\n {\n + \ \"cubeLength\": 512,\n \"resolution\": + [\n 2,\n 2,\n 1\n + \ ]\n },\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 4,\n 4,\n + \ 2\n ]\n }\n ]\n + \ },\n {\n \"name\": \"segmentation\",\n \"category\": + \"segmentation\",\n \"boundingBox\": {\n \"topLeft\": + [\n 2807,\n 4352,\n 1794\n + \ ],\n \"width\": 10,\n \"height\": + 10,\n \"depth\": 10\n },\n \"elementClass\": + \"uint32\",\n \"dataFormat\": \"wkw\",\n \"numChannels\": + 1,\n \"largestSegmentId\": 5238529,\n \"wkwResolutions\": + [\n {\n \"cubeLength\": 512,\n \"resolution\": + [\n 1,\n 1,\n 1\n + \ ]\n },\n {\n \"cubeLength\": + 512,\n \"resolution\": [\n 2,\n 2,\n + \ 1\n ]\n },\n {\n + \ \"cubeLength\": 512,\n \"resolution\": + [\n 4,\n 4,\n 2\n + \ ]\n }\n ]\n }\n ]\n}\n----\n" headers: accept: - '*/*' @@ -1246,7 +1247,7 @@ interactions: connection: - keep-alive content-length: - - '1584' + - '4450' content-type: - multipart/form-data; boundary=fffffff0000000 host: @@ -1324,14 +1325,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 response: - content: '{"name":"test_upload_download_roundtrip_2024-03-14_12-25-11","dataSource":{"id":{"name":"test_upload_download_roundtrip_2024-03-14_12-25-11","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419112136,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419112136,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_upload_download_roundtrip_2024-07-15_11-27-29","dataSource":{"id":{"name":"test_upload_download_roundtrip_2024-07-15_11-27-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042850148,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042850148,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1288' + - '1318' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1351,8 +1352,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11\u201D + \ \n \n

                                This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29\u201D folder.

                                \n

                                The following are the contents of the folder:

                                \n
                                  \n \ \n
                                • datasource-properties.json
                                • \n \ \n
                                • .zgroup
                                • \n \n
                                • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                  This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11\u201D + \ \n \n

                                  This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29\u201D folder.

                                  \n

                                  The following are the contents of the folder:

                                  \n
                                    \n \ \n
                                  • datasource-properties.json
                                  • \n \ \n
                                  • .zgroup
                                  • \n \n
                                  • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                    This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11\u201D + \ \n \n

                                    This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29\u201D folder.

                                    \n

                                    The following are the contents of the folder:

                                    \n
                                      \n \ \n
                                    • datasource-properties.json
                                    • \n \ \n
                                    • .zgroup
                                    • \n \n
                                    • \n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n
                                      \n \ \n\n" @@ -1620,7 +1621,7 @@ interactions: cache-control: - no-cache content-length: - - '1329' + - '1330' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1807,8 +1808,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -1829,7 +1830,7 @@ interactions: cache-control: - no-cache content-length: - - '1329' + - '1330' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -1850,8 +1851,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/2-2-1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/2-2-1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -1872,7 +1873,7 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2059,8 +2060,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/2-2-1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/2-2-1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2081,7 +2082,7 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2102,8 +2103,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/4-4-2\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/4-4-2\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2124,7 +2125,7 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2311,8 +2312,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/color/4-4-2\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/color/4-4-2\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2333,7 +2334,7 @@ interactions: cache-control: - no-cache content-length: - - '1333' + - '1334' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2354,8 +2355,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2376,7 +2377,7 @@ interactions: cache-control: - no-cache content-length: - - '1336' + - '1337' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2563,8 +2564,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2585,7 +2586,7 @@ interactions: cache-control: - no-cache content-length: - - '1336' + - '1337' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2606,8 +2607,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/2-2-1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/2-2-1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2628,7 +2629,7 @@ interactions: cache-control: - no-cache content-length: - - '1340' + - '1341' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2815,8 +2816,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/2-2-1\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/2-2-1\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2837,7 +2838,7 @@ interactions: cache-control: - no-cache content-length: - - '1340' + - '1341' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -2858,8 +2859,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/4-4-2\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/4-4-2\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -2880,7 +2881,7 @@ interactions: cache-control: - no-cache content-length: - - '1340' + - '1341' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -3067,8 +3068,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n \n - \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-03-14_12-25-11/segmentation/4-4-2\u201D + \ \n \n

                                      This is the WEBKNOSSOS Datastore \u201COrganization_X/test_upload_download_roundtrip_2024-07-15_11-27-29/segmentation/4-4-2\u201D folder.

                                      \n

                                      The following are the contents of the folder:

                                      \n \n \ \n\n" @@ -3089,7 +3090,7 @@ interactions: cache-control: - no-cache content-length: - - '1340' + - '1341' content-type: - text/html; charset=UTF-8 date: Mon, 01 Jan 2000 00:00:00 GMT @@ -3114,14 +3115,14 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: http://localhost:9000/api/v6/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 + uri: http://localhost:9000/api/v7/datasets/Organization_X/test_upload_download_roundtrip_2000-01-01_00-00-00 response: - content: '{"name":"test_upload_download_roundtrip_2024-03-14_12-25-11","dataSource":{"id":{"name":"test_upload_download_roundtrip_2024-03-14_12-25-11","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1710419112136,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1710419112136,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' + content: '{"name":"test_upload_download_roundtrip_2024-07-15_11-27-29","dataSource":{"id":{"name":"test_upload_download_roundtrip_2024-07-15_11-27-29","team":"Organization_X"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2807,4352,1794],"width":10,"height":10,"depth":10},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"localhost","url":"http://localhost:9000","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":[],"jobsEnabled":false},"owningOrganization":"Organization_X","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1721042850148,"isEditable":true,"lastUsedByUser":1010101010101,"logoUrl":"/assets/images/mpi-logos.svg","sortingKey":1721042850148,"details":null,"isUnreported":false,"tags":[],"folderId":"570b9f4e4bb848d0885ea917","publication":null,"usedStorageBytes":8346451}' headers: cache-control: - no-cache content-length: - - '1288' + - '1318' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml index 91c0f42c8..4205c64bd 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[93zLg9U9vJ3c_UWp].yaml @@ -13,7 +13,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/shortLinks/byKey/93zLg9U9vJ3c_UWp + uri: https://webknossos.org/api/v7/shortLinks/byKey/93zLg9U9vJ3c_UWp response: content: '{"_id":"638f66890100006501d8ac2c","key":"93zLg9U9vJ3c_UWp","longLink":"https://webknossos.org/datasets/scalable_minds/l4_sample_dev_sharing/view?token=ilDXmfQa2G8e719vb1U9YQ#%7B%22position%22:%5B2807,4352,1794%5D,%22mode%22:%22orthogonal%22,%22zoomStep%22:1.3,%22stateByLayer%22:%7B%22color%22:%7B%22isDisabled%22:false%7D,%22segmentation%22:%7B%22isDisabled%22:false%7D%7D%7D"}' headers: @@ -48,16 +48,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: - content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' + content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1375' + - '1476' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml index fb3414777..cdb147337 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev-view].yaml @@ -13,16 +13,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4_sample_dev + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4_sample_dev response: - content: '{"name":"l4_sample_dev","dataSource":{"id":{"name":"l4_sample_dev","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]},"adminViewConfiguration":{}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1644483272270,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1644483272270,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' + content: '{"name":"l4_sample_dev","dataSource":{"id":{"name":"l4_sample_dev","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]},"adminViewConfiguration":{}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529,"adminViewConfiguration":{}}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1644483272270,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1644483272270,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1491' + - '1592' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml index fb3414777..cdb147337 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev].yaml @@ -13,16 +13,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4_sample_dev + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4_sample_dev response: - content: '{"name":"l4_sample_dev","dataSource":{"id":{"name":"l4_sample_dev","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]},"adminViewConfiguration":{}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529,"adminViewConfiguration":{}}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1644483272270,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1644483272270,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' + content: '{"name":"l4_sample_dev","dataSource":{"id":{"name":"l4_sample_dev","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8","defaultViewConfiguration":{"color":[255,219,219],"intensityRange":[70,180]},"adminViewConfiguration":{}},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529,"adminViewConfiguration":{}}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":true,"description":null,"displayName":null,"created":1644483272270,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1644483272270,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1491' + - '1592' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml index af6ef9348..fe6796856 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_download[l4_sample_dev_sharing-view].yaml @@ -13,16 +13,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: - content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' + content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1375' + - '1476' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT diff --git a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml index 0a81b11ca..cef3bef1d 100644 --- a/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml +++ b/webknossos/tests/dataset/cassettes/test_dataset_download_upload_remote/test_url_open_remote[93zLg9U9vJ3c_UWp].yaml @@ -13,7 +13,7 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/shortLinks/byKey/93zLg9U9vJ3c_UWp + uri: https://webknossos.org/api/v7/shortLinks/byKey/93zLg9U9vJ3c_UWp response: content: '{"_id":"638f66890100006501d8ac2c","key":"93zLg9U9vJ3c_UWp","longLink":"https://webknossos.org/datasets/scalable_minds/l4_sample_dev_sharing/view?token=ilDXmfQa2G8e719vb1U9YQ#%7B%22position%22:%5B2807,4352,1794%5D,%22mode%22:%22orthogonal%22,%22zoomStep%22:1.3,%22stateByLayer%22:%7B%22color%22:%7B%22isDisabled%22:false%7D,%22segmentation%22:%7B%22isDisabled%22:false%7D%7D%7D"}' headers: @@ -48,16 +48,16 @@ interactions: user-agent: - python-httpx/0.24.1 method: GET - uri: https://webknossos.org/api/v6/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ + uri: https://webknossos.org/api/v7/datasets/scalable_minds/l4_sample_dev_sharing?sharingToken=ilDXmfQa2G8e719vb1U9YQ response: - content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":[11.239999771118164,11.239999771118164,28]},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","compute_segment_index_file","infer_nuclei","render_animation","convert_to_wkw","infer_neurons","export_tiff","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' + content: '{"name":"l4_sample_dev_sharing","dataSource":{"id":{"name":"l4_sample_dev_sharing","team":"scalable_minds"},"dataLayers":[{"name":"color","category":"color","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint8"},{"name":"segmentation","category":"segmentation","boundingBox":{"topLeft":[2679,4224,1719],"width":256,"height":256,"depth":150},"resolutions":[[1,1,1],[2,2,1],[4,4,2]],"elementClass":"uint32","largestSegmentId":5238529}],"scale":{"factor":[11.239999771118164,11.239999771118164,28],"unit":"nanometer"}},"dataStore":{"name":"webknossos.org","url":"https://data-humerus.webknossos.org","isScratch":false,"allowsUpload":true,"jobsSupportedByAvailableWorkers":["compute_mesh_file","infer_mitochondria","compute_segment_index_file","infer_nuclei","render_animation","infer_with_model","convert_to_wkw","train_model","infer_neurons","export_tiff","align_sections","materialize_volume_annotation","find_largest_segment_id"],"jobsEnabled":true},"owningOrganization":"scalable_minds","allowedTeams":[],"allowedTeamsCumulative":[],"isActive":true,"isPublic":false,"description":null,"displayName":null,"created":1647612907522,"isEditable":false,"lastUsedByUser":1010101010101,"logoUrl":"https://static.webknossos.org/logos/scalableminds.svg","sortingKey":1647612907522,"details":null,"isUnreported":false,"tags":[],"folderId":"638727a60b62b016daeaa60e","publication":null,"usedStorageBytes":null}' headers: cache-control: - no-cache connection: - keep-alive content-length: - - '1375' + - '1476' content-type: - application/json date: Mon, 01 Jan 2000 00:00:00 GMT @@ -79,8 +79,8 @@ interactions: string: "\n\n \n \n WEBKNOSSOS Datastore\n \n \n \n