Skip to content

Commit 4b9757f

Browse files
✨ Reflect unhide param in client (#155)
* update workflow before publishing python package * fix dependency issue and bump version * point to website in project description * fix broken dependency * improve doc * add github token to download artifacts * ensure only read-access @wvangeit * yet another attempt at downloading artifacts * make sure to use repo that ran the trigger wf * another attempt at fixing * change owner * allow publishing to testpypi also when pr * minor change * revert minor (but breaking) change * minor fix * add debug messages * another debug message * hopefully the final version * final fix * minor fix * move master and tag to individual jobs * add debug messages * dev->post * add python script for determining semantic version * minor changes * minor changes * improve error handling and add version file to artifacts * check if release * minor fix * ensure to enter venv * also when tagging * source venv in publishin workflow * ensure only master * add script for testing 'pure' semver * adapt workflows to new python script * minor change * attempt to evaluate expressions correctly * several fixes to fix tests * ensure repo is checked out in publish workflow * several small fixes * cleanup * debug * minor cleanup * mionr changes * add debug message * minor change * minor change * yet another try * minor change * minor change * minor change * mionr change * minor changes * correct workflow run id * cosmetic change * avoid using gh * change to a single job for publishing * minor cleanup * swap loops in clean up jobs * correction * update server compatibility to new url * minor change to trigger ci * update openapi.json
1 parent 8cda801 commit 4b9757f

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

api/openapi.json

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2385,6 +2385,16 @@
23852385
},
23862386
"name": "version",
23872387
"in": "path"
2388+
},
2389+
{
2390+
"required": false,
2391+
"schema": {
2392+
"type": "boolean",
2393+
"title": "Hidden",
2394+
"default": true
2395+
},
2396+
"name": "hidden",
2397+
"in": "query"
23882398
}
23892399
],
23902400
"requestBody": {
@@ -4283,7 +4293,7 @@
42834293
"studies"
42844294
],
42854295
"summary": "List Studies",
4286-
"description": "New in *version 0.5.0* (only with API_SERVER_DEV_FEATURES_ENABLED=1)",
4296+
"description": "New in *version 0.5.0*",
42874297
"operationId": "list_studies",
42884298
"parameters": [
42894299
{
@@ -4345,7 +4355,7 @@
43454355
"studies"
43464356
],
43474357
"summary": "Get Study",
4348-
"description": "New in *version 0.5.0* (only with API_SERVER_DEV_FEATURES_ENABLED=1)",
4358+
"description": "New in *version 0.5.0*",
43494359
"operationId": "get_study",
43504360
"parameters": [
43514361
{
@@ -4462,7 +4472,7 @@
44624472
"studies"
44634473
],
44644474
"summary": "List Study Ports",
4465-
"description": "Lists metadata on ports of a given study\n\nNew in *version 0.5.0* (only with API_SERVER_DEV_FEATURES_ENABLED=1)",
4475+
"description": "Lists metadata on ports of a given study\n\nNew in *version 0.5.0*",
44664476
"operationId": "list_study_ports",
44674477
"parameters": [
44684478
{
@@ -4585,6 +4595,7 @@
45854595
"studies"
45864596
],
45874597
"summary": "Create Study Job",
4598+
"description": "hidden -- if True (default) hides project from UI",
45884599
"operationId": "create_study_job",
45894600
"parameters": [
45904601
{
@@ -4596,6 +4607,16 @@
45964607
},
45974608
"name": "study_id",
45984609
"in": "path"
4610+
},
4611+
{
4612+
"required": false,
4613+
"schema": {
4614+
"type": "boolean",
4615+
"title": "Hidden",
4616+
"default": true
4617+
},
4618+
"name": "hidden",
4619+
"in": "query"
45994620
}
46004621
],
46014622
"requestBody": {
@@ -5475,7 +5496,13 @@
54755496
"required": [
54765497
"errors"
54775498
],
5478-
"title": "ErrorGet"
5499+
"title": "ErrorGet",
5500+
"example": {
5501+
"errors": [
5502+
"some error message",
5503+
"another error message"
5504+
]
5505+
}
54795506
},
54805507
"File": {
54815508
"properties": {

0 commit comments

Comments
 (0)