cs-models 0.0.710__py3-none-any.whl → 0.0.712__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cs-models might be problematic. Click here for more details.
- cs_models/resources/TableFigure/models.py +1 -0
- cs_models/resources/TableFigure/schemas.py +41 -1
- cs_models/resources/ViewPublicAssistantUserQuery/__init__.py +0 -0
- cs_models/resources/ViewPublicAssistantUserQuery/models.py +30 -0
- cs_models/resources/ViewPublicAssistantUserQuery/schemas.py +14 -0
- {cs_models-0.0.710.dist-info → cs_models-0.0.712.dist-info}/METADATA +1 -1
- {cs_models-0.0.710.dist-info → cs_models-0.0.712.dist-info}/RECORD +9 -6
- {cs_models-0.0.710.dist-info → cs_models-0.0.712.dist-info}/WHEEL +0 -0
- {cs_models-0.0.710.dist-info → cs_models-0.0.712.dist-info}/top_level.txt +0 -0
|
@@ -24,6 +24,7 @@ class TableFigureModel(Base):
|
|
|
24
24
|
)
|
|
25
25
|
source_type = Column(String(50), nullable=False)
|
|
26
26
|
source_id = Column(Integer, nullable=False)
|
|
27
|
+
type = Column(String(50), nullable=False)
|
|
27
28
|
label = Column(String(50), nullable=True)
|
|
28
29
|
caption = Column(Text, nullable=True)
|
|
29
30
|
description = Column(Text, nullable=True)
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import json
|
|
1
2
|
from marshmallow import (
|
|
2
3
|
Schema,
|
|
3
4
|
fields,
|
|
@@ -5,6 +6,44 @@ from marshmallow import (
|
|
|
5
6
|
)
|
|
6
7
|
|
|
7
8
|
|
|
9
|
+
class TableFigureCaptionField(fields.Field):
|
|
10
|
+
"""Field that stores result for the Assistant command."""
|
|
11
|
+
|
|
12
|
+
def _serialize(self, value, attr, obj, **kwargs):
|
|
13
|
+
"""
|
|
14
|
+
In the DB, the `result` field is a text field. We persist
|
|
15
|
+
data by performing the following:
|
|
16
|
+
|
|
17
|
+
AssistantCommandModel(
|
|
18
|
+
...
|
|
19
|
+
result=json.dumps({...}),
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
So here we need to perform the inverse operation (i.e `json.loads(..)`)
|
|
23
|
+
"""
|
|
24
|
+
if value is None:
|
|
25
|
+
return None
|
|
26
|
+
return json.loads(value)
|
|
27
|
+
|
|
28
|
+
def _deserialize(self, value, attr, data, **kwargs):
|
|
29
|
+
"""
|
|
30
|
+
In the DB, the `result` field is a text field. We persist
|
|
31
|
+
data by performing the following:
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
AssistantCommandModel(
|
|
36
|
+
***AssistantCommandResourceSchema().load({
|
|
37
|
+
...
|
|
38
|
+
"result": [{"some_key": 1}, {"some_key": 2}],
|
|
39
|
+
}),
|
|
40
|
+
)
|
|
41
|
+
"""
|
|
42
|
+
if value is None:
|
|
43
|
+
return None
|
|
44
|
+
return json.dumps(value)
|
|
45
|
+
|
|
46
|
+
|
|
8
47
|
class TableFigureResourceSchema(Schema):
|
|
9
48
|
not_blank = validate.Length(min=1, error='Field cannot be blank')
|
|
10
49
|
|
|
@@ -12,8 +51,9 @@ class TableFigureResourceSchema(Schema):
|
|
|
12
51
|
file_id = fields.Integer(required=True)
|
|
13
52
|
source_type = fields.String(required=True)
|
|
14
53
|
source_id = fields.Integer(required=True)
|
|
54
|
+
type = fields.String(required=True)
|
|
15
55
|
label = fields.String(allow_none=True)
|
|
16
|
-
caption =
|
|
56
|
+
caption = TableFigureCaptionField(required=True, allow_none=True)
|
|
17
57
|
description = fields.String(allow_none=True)
|
|
18
58
|
content = fields.String(allow_none=True)
|
|
19
59
|
link = fields.String(allow_none=True)
|
|
File without changes
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from datetime import datetime
|
|
2
|
+
|
|
3
|
+
from sqlalchemy import (
|
|
4
|
+
Column,
|
|
5
|
+
Integer,
|
|
6
|
+
DateTime,
|
|
7
|
+
ForeignKey,
|
|
8
|
+
Text,
|
|
9
|
+
)
|
|
10
|
+
|
|
11
|
+
from ...database import Base
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class ViewPublicAssistantUserQueryModel(Base):
|
|
15
|
+
__tablename__ = "_view_public_assistant_user_queries"
|
|
16
|
+
|
|
17
|
+
id = Column(Integer, primary_key=True)
|
|
18
|
+
user_query_id = Column(
|
|
19
|
+
Integer,
|
|
20
|
+
ForeignKey('assistant_user_queries.id'),
|
|
21
|
+
nullable=False,
|
|
22
|
+
)
|
|
23
|
+
data = Column(Text, nullable=True)
|
|
24
|
+
updated_at = Column(
|
|
25
|
+
DateTime,
|
|
26
|
+
nullable=False,
|
|
27
|
+
# https://stackoverflow.com/questions/58776476/why-doesnt-freezegun-work-with-sqlalchemy-default-values
|
|
28
|
+
default=lambda: datetime.utcnow(),
|
|
29
|
+
onupdate=lambda: datetime.utcnow(),
|
|
30
|
+
)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from marshmallow import (
|
|
2
|
+
Schema,
|
|
3
|
+
fields,
|
|
4
|
+
validate,
|
|
5
|
+
)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ViewPublicAssistantUserQueryResourceSchema(Schema):
|
|
9
|
+
not_blank = validate.Length(min=1, error='Field cannot be blank')
|
|
10
|
+
|
|
11
|
+
id = fields.Integer(dump_only=True)
|
|
12
|
+
user_query_id = fields.Integer(required=True)
|
|
13
|
+
data = fields.String(allow_none=True)
|
|
14
|
+
updated_at = fields.DateTime()
|
|
@@ -905,8 +905,8 @@ cs_models/resources/SubsidiarySponsorMapping/models.py,sha256=nzTbV96Dy25NmvFrWz
|
|
|
905
905
|
cs_models/resources/SubsidiarySponsorMapping/schemas.py,sha256=RjiN4h8HMKsaGRVGWHrO_LdH6A5zzl2WfieEJJQv7I8,813
|
|
906
906
|
cs_models/resources/SubsidiarySponsorMapping/test_subsidiary_sponsor_mapping.py,sha256=vMCJDohlOdZaUxMuAnqRy6hEUepc_EE-6nVElM8WUtY,5977
|
|
907
907
|
cs_models/resources/TableFigure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
908
|
-
cs_models/resources/TableFigure/models.py,sha256=
|
|
909
|
-
cs_models/resources/TableFigure/schemas.py,sha256=
|
|
908
|
+
cs_models/resources/TableFigure/models.py,sha256=RXuqM4BGzwuykCYrKNc1gkmtjvyftbp7gkUayX5UU00,1082
|
|
909
|
+
cs_models/resources/TableFigure/schemas.py,sha256=sY7mElYRzVd8bzrPONQ4UL2C44z-Eckl-6ypFoNdDBI,1771
|
|
910
910
|
cs_models/resources/TableOutbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
911
911
|
cs_models/resources/TableOutbox/models.py,sha256=NAq51yqxx4tRWsIoPKSOhRXkAAX0Yom7146qOJ4fX5E,837
|
|
912
912
|
cs_models/resources/TableOutbox/schemas.py,sha256=zTR8wSwu9YSgsZX2CH7wPi-toGAkJDAQMPcYwBzWX8g,546
|
|
@@ -1092,6 +1092,9 @@ cs_models/resources/ViewMergerStage/schemas.py,sha256=ESFAkx25HLvkTW3PsD7FV1uaUg
|
|
|
1092
1092
|
cs_models/resources/ViewMergerTarget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1093
1093
|
cs_models/resources/ViewMergerTarget/models.py,sha256=zsCp5TV2PNDq-hf53O_2Otv_O1TqSxY08WowUdhjQfw,749
|
|
1094
1094
|
cs_models/resources/ViewMergerTarget/schemas.py,sha256=USAO8isTgJz6XUBm2bFnDwGrbaMEZShVVdJeKjgGtgc,352
|
|
1095
|
+
cs_models/resources/ViewPublicAssistantUserQuery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1096
|
+
cs_models/resources/ViewPublicAssistantUserQuery/models.py,sha256=NlQewgaHtNi5akJEsI0ZkJyh4HC41HsEiW2zz6XtxYM,739
|
|
1097
|
+
cs_models/resources/ViewPublicAssistantUserQuery/schemas.py,sha256=-k8hMVPD0uBEBO80v9WrGTvWeFPMV0oKKHC7pM3idN4,364
|
|
1095
1098
|
cs_models/resources/ViewPublicWorkbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1096
1099
|
cs_models/resources/ViewPublicWorkbook/models.py,sha256=j3HQyIURRlbqV4aKSb4ydCBCK7rDO9TEgnU6a_Z3ia0,701
|
|
1097
1100
|
cs_models/resources/ViewPublicWorkbook/schemas.py,sha256=roJUBHpJm7C4jBvIWUNTV2nrwn4gzd0_Bu5_EcBk7jQ,352
|
|
@@ -1177,7 +1180,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1177
1180
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1178
1181
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1179
1182
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1180
|
-
cs_models-0.0.
|
|
1181
|
-
cs_models-0.0.
|
|
1182
|
-
cs_models-0.0.
|
|
1183
|
-
cs_models-0.0.
|
|
1183
|
+
cs_models-0.0.712.dist-info/METADATA,sha256=SE19aQggkcjEZzp9-uOQ1t31kvdAB21pzcwZdgY0oho,792
|
|
1184
|
+
cs_models-0.0.712.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
1185
|
+
cs_models-0.0.712.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1186
|
+
cs_models-0.0.712.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|