Skip to content

Commit 15d048a

Browse files
GitHKAndrei Neagu
andauthored
⬆️ Updated clients from latest master commit (#228)
Co-authored-by: Andrei Neagu <neagu@itis.swiss>
1 parent ff69213 commit 15d048a

File tree

3 files changed

+101
-1
lines changed

3 files changed

+101
-1
lines changed

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
path: '.'
4646
- name: Deploy to GitHub Pages
4747
id: deployment
48-
uses: actions/deploy-pages@v2
48+
uses: actions/deploy-pages@v4

api/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,8 @@ openapi-master-diff.json: ## Diffs against newer openapi-dev.json and checks bac
2929
.PHONY: openapi-deploy-diff.json
3030
openapi-deploy-diff.json: ## Diffs against newer openapi-dev.json and checks backwards compatibility
3131
$(call openapi_diff, https://api.osparc.io/api/v0/openapi.json,$@)
32+
33+
34+
.PHONY: openapi-osparc-simore-master-branch
35+
openapi-osparc-simore-master-branch: ## recover form osparc-smicore repo master branch
36+
$(call download_openapi, https://raw.githubusercontent.com/ITISFoundation/osparc-simcore/refs/heads/master/services/api-server/openapi.json,openapi.json)

api/openapi.json

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5288,6 +5288,11 @@
52885288
"summary": "List Function Jobs",
52895289
"description": "List function jobs\n\nNew in *version 0.8.0*",
52905290
"operationId": "list_function_jobs",
5291+
"security": [
5292+
{
5293+
"HTTPBasic": []
5294+
}
5295+
],
52915296
"parameters": [
52925297
{
52935298
"name": "limit",
@@ -5343,6 +5348,11 @@
53435348
"summary": "Register Function Job",
53445349
"description": "Create function job\n\nNew in *version 0.8.0*",
53455350
"operationId": "register_function_job",
5351+
"security": [
5352+
{
5353+
"HTTPBasic": []
5354+
}
5355+
],
53465356
"requestBody": {
53475357
"required": true,
53485358
"content": {
@@ -5423,6 +5433,11 @@
54235433
"summary": "Get Function Job",
54245434
"description": "Get function job\n\nNew in *version 0.8.0*",
54255435
"operationId": "get_function_job",
5436+
"security": [
5437+
{
5438+
"HTTPBasic": []
5439+
}
5440+
],
54265441
"parameters": [
54275442
{
54285443
"name": "function_job_id",
@@ -5494,6 +5509,11 @@
54945509
"summary": "Delete Function Job",
54955510
"description": "Delete function job\n\nNew in *version 0.8.0*",
54965511
"operationId": "delete_function_job",
5512+
"security": [
5513+
{
5514+
"HTTPBasic": []
5515+
}
5516+
],
54975517
"parameters": [
54985518
{
54995519
"name": "function_job_id",
@@ -5672,6 +5692,11 @@
56725692
"summary": "List Function Job Collections",
56735693
"description": "List function job collections\n\nNew in *version 0.8.0*",
56745694
"operationId": "list_function_job_collections",
5695+
"security": [
5696+
{
5697+
"HTTPBasic": []
5698+
}
5699+
],
56755700
"parameters": [
56765701
{
56775702
"name": "limit",
@@ -5744,6 +5769,11 @@
57445769
"summary": "Register Function Job Collection",
57455770
"description": "Register function job collection\n\nNew in *version 0.8.0*",
57465771
"operationId": "register_function_job_collection",
5772+
"security": [
5773+
{
5774+
"HTTPBasic": []
5775+
}
5776+
],
57475777
"requestBody": {
57485778
"required": true,
57495779
"content": {
@@ -5786,6 +5816,11 @@
57865816
"summary": "Get Function Job Collection",
57875817
"description": "Get function job collection\n\nNew in *version 0.8.0*",
57885818
"operationId": "get_function_job_collection",
5819+
"security": [
5820+
{
5821+
"HTTPBasic": []
5822+
}
5823+
],
57895824
"parameters": [
57905825
{
57915826
"name": "function_job_collection_id",
@@ -5838,6 +5873,11 @@
58385873
"summary": "Delete Function Job Collection",
58395874
"description": "Delete function job collection\n\nNew in *version 0.8.0*",
58405875
"operationId": "delete_function_job_collection",
5876+
"security": [
5877+
{
5878+
"HTTPBasic": []
5879+
}
5880+
],
58415881
"parameters": [
58425882
{
58435883
"name": "function_job_collection_id",
@@ -5890,6 +5930,11 @@
58905930
"summary": "Function Job Collection List Function Jobs",
58915931
"description": "Get the function jobs in function job collection\n\nNew in *version 0.8.0*",
58925932
"operationId": "function_job_collection_list_function_jobs",
5933+
"security": [
5934+
{
5935+
"HTTPBasic": []
5936+
}
5937+
],
58935938
"parameters": [
58945939
{
58955940
"name": "function_job_collection_id",
@@ -6767,6 +6812,11 @@
67676812
"summary": "Register Function",
67686813
"description": "Create function\n\nNew in *version 0.8.0*",
67696814
"operationId": "register_function",
6815+
"security": [
6816+
{
6817+
"HTTPBasic": []
6818+
}
6819+
],
67706820
"requestBody": {
67716821
"required": true,
67726822
"content": {
@@ -6855,6 +6905,11 @@
68556905
"summary": "List Functions",
68566906
"description": "List functions\n\nNew in *version 0.8.0*",
68576907
"operationId": "list_functions",
6908+
"security": [
6909+
{
6910+
"HTTPBasic": []
6911+
}
6912+
],
68586913
"parameters": [
68596914
{
68606915
"name": "limit",
@@ -6912,6 +6967,11 @@
69126967
"summary": "Get Function",
69136968
"description": "Get function\n\nNew in *version 0.8.0*",
69146969
"operationId": "get_function",
6970+
"security": [
6971+
{
6972+
"HTTPBasic": []
6973+
}
6974+
],
69156975
"parameters": [
69166976
{
69176977
"name": "function_id",
@@ -6983,6 +7043,11 @@
69837043
"summary": "Delete Function",
69847044
"description": "Delete function\n\nNew in *version 0.8.0*",
69857045
"operationId": "delete_function",
7046+
"security": [
7047+
{
7048+
"HTTPBasic": []
7049+
}
7050+
],
69867051
"parameters": [
69877052
{
69887053
"name": "function_id",
@@ -7035,6 +7100,11 @@
70357100
"summary": "List Function Jobs For Functionid",
70367101
"description": "List function jobs for a function\n\nNew in *version 0.8.0*",
70377102
"operationId": "list_function_jobs_for_functionid",
7103+
"security": [
7104+
{
7105+
"HTTPBasic": []
7106+
}
7107+
],
70387108
"parameters": [
70397109
{
70407110
"name": "function_id",
@@ -7102,6 +7172,11 @@
71027172
"summary": "Update Function Title",
71037173
"description": "Update function\n\nNew in *version 0.8.0*",
71047174
"operationId": "update_function_title",
7175+
"security": [
7176+
{
7177+
"HTTPBasic": []
7178+
}
7179+
],
71057180
"parameters": [
71067181
{
71077182
"name": "function_id",
@@ -7184,6 +7259,11 @@
71847259
"summary": "Update Function Description",
71857260
"description": "Update function\n\nNew in *version 0.8.0*",
71867261
"operationId": "update_function_description",
7262+
"security": [
7263+
{
7264+
"HTTPBasic": []
7265+
}
7266+
],
71877267
"parameters": [
71887268
{
71897269
"name": "function_id",
@@ -7266,6 +7346,11 @@
72667346
"summary": "Get Function Inputschema",
72677347
"description": "Get function input schema\n\nNew in *version 0.8.0*",
72687348
"operationId": "get_function_inputschema",
7349+
"security": [
7350+
{
7351+
"HTTPBasic": []
7352+
}
7353+
],
72697354
"parameters": [
72707355
{
72717356
"name": "function_id",
@@ -7331,6 +7416,11 @@
73317416
"summary": "Get Function Outputschema",
73327417
"description": "Get function output schema\n\nNew in *version 0.8.0*",
73337418
"operationId": "get_function_outputschema",
7419+
"security": [
7420+
{
7421+
"HTTPBasic": []
7422+
}
7423+
],
73347424
"parameters": [
73357425
{
73367426
"name": "function_id",
@@ -7396,6 +7486,11 @@
73967486
"summary": "Validate Function Inputs",
73977487
"description": "Validate inputs against the function's input schema\n\nNew in *version 0.8.0*",
73987488
"operationId": "validate_function_inputs",
7489+
"security": [
7490+
{
7491+
"HTTPBasic": []
7492+
}
7493+
],
73997494
"parameters": [
74007495
{
74017496
"name": "function_id",

0 commit comments

Comments
 (0)