Skip to content

Commit fe981b3

Browse files
committed
CH-109 applications dependencies update
1 parent f997891 commit fe981b3

6 files changed

Lines changed: 13 additions & 10 deletions

File tree

applications/volumemanager/server/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ werkzeug == 0.16.1; python_version=="3.5" or python_version=="3.4"
88
swagger-ui-bundle >= 0.0.2
99
python_dateutil >= 2.6.0
1010
setuptools >= 21.0.0
11-
Flask == 1.1.2
11+
Flask == 2.1.1

applications/volumemanager/server/volumemanager/models/base_model_.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
class Model(object):
1212
# openapiTypes: The key is attribute name and the
1313
# value is attribute type.
14-
openapi_types = {}
14+
openapi_types: typing.Dict[str, type] = {}
1515

1616
# attributeMap: The key is attribute name and the
1717
# value is json key in definition.
18-
attribute_map = {}
18+
attribute_map: typing.Dict[str, str] = {}
1919

2020
@classmethod
2121
def from_dict(cls: typing.Type[T], dikt) -> T:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{"packageName": "workflows_api"}

applications/workflows/server/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ werkzeug == 0.16.1; python_version=="3.5" or python_version=="3.4"
88
swagger-ui-bundle >= 0.0.2
99
python_dateutil >= 2.6.0
1010
setuptools >= 21.0.0
11-
Flask == 1.1.2
11+
Flask == 2.1.1

applications/workflows/server/workflows_api/models/base_model_.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
class Model(object):
1212
# openapiTypes: The key is attribute name and the
1313
# value is attribute type.
14-
openapi_types = {}
14+
openapi_types: typing.Dict[str, type] = {}
1515

1616
# attributeMap: The key is attribute name and the
1717
# value is json key in definition.
18-
attribute_map = {}
18+
attribute_map: typing.Dict[str, str] = {}
1919

2020
@classmethod
2121
def from_dict(cls: typing.Type[T], dikt) -> T:

applications/workflows/server/workflows_api/openapi/openapi.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ servers:
1111
- description: Metacell host
1212
url: /api
1313
tags:
14-
- description: standard creation, listing and retrieve
14+
- description: "standard creation, listing and retrieve"
1515
name: Create and Access
1616
paths:
1717
/operations:
@@ -100,7 +100,7 @@ paths:
100100
name: name
101101
required: true
102102
schema:
103-
pattern: ^[0-9A-Za-z\s\-]+$
103+
pattern: "^[0-9A-Za-z\\s\\-]+$"
104104
type: string
105105
style: simple
106106
responses:
@@ -136,7 +136,7 @@ paths:
136136
name: name
137137
required: true
138138
schema:
139-
pattern: ^[0-9A-Za-z\s\-]+$
139+
pattern: "^[0-9A-Za-z\\s\\-]+$"
140140
type: string
141141
style: simple
142142
responses:
@@ -167,10 +167,12 @@ components:
167167
createTime: 2016-08-29T09:12:33.001Z
168168
name: name
169169
message: ""
170+
status: null
170171
- workflow: workflow
171172
createTime: 2016-08-29T09:12:33.001Z
172173
name: name
173174
message: ""
175+
status: null
174176
properties:
175177
meta:
176178
$ref: '#/components/schemas/SearchResultData'
@@ -197,6 +199,7 @@ components:
197199
createTime: 2016-08-29T09:12:33.001Z
198200
name: name
199201
message: ""
202+
status: null
200203
properties:
201204
message:
202205
description: usually set when an error occurred

0 commit comments

Comments
 (0)