cs-models 0.0.733__py3-none-any.whl → 0.0.735__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/Deal/models.py +1 -0
- cs_models/resources/Deal/schemas.py +1 -0
- cs_models/resources/VAParameter/models.py +2 -0
- cs_models/resources/VAParameter/schemas.py +1 -0
- {cs_models-0.0.733.dist-info → cs_models-0.0.735.dist-info}/METADATA +1 -1
- {cs_models-0.0.733.dist-info → cs_models-0.0.735.dist-info}/RECORD +8 -8
- {cs_models-0.0.733.dist-info → cs_models-0.0.735.dist-info}/WHEEL +0 -0
- {cs_models-0.0.733.dist-info → cs_models-0.0.735.dist-info}/top_level.txt +0 -0
|
@@ -19,6 +19,7 @@ class DealModel(Base):
|
|
|
19
19
|
id = Column(Integer, primary_key=True)
|
|
20
20
|
announcement_date = Column(DateTime, nullable=False, index=True)
|
|
21
21
|
round = Column(String(50), nullable=True)
|
|
22
|
+
deal_type = Column(String(128), nullable=True)
|
|
22
23
|
deal_value = Column(DECIMAL(13, 2), nullable=False)
|
|
23
24
|
currency = Column(String(10), nullable=True)
|
|
24
25
|
company_sec_id = Column(
|
|
@@ -15,6 +15,7 @@ class DealResourceSchema(Schema):
|
|
|
15
15
|
announcement_date = fields.DateTime(required=True)
|
|
16
16
|
deal_value = fields.Decimal()
|
|
17
17
|
round = fields.String(allow_none=True)
|
|
18
|
+
deal_type = fields.String(allow_none=True)
|
|
18
19
|
currency = fields.String(allow_none=True)
|
|
19
20
|
company_sec_id = fields.Integer(allow_none=True)
|
|
20
21
|
company_ous_id = fields.Integer(allow_none=True)
|
|
@@ -4,6 +4,7 @@ from sqlalchemy import (
|
|
|
4
4
|
String,
|
|
5
5
|
DateTime,
|
|
6
6
|
Text,
|
|
7
|
+
Boolean,
|
|
7
8
|
)
|
|
8
9
|
from datetime import datetime
|
|
9
10
|
|
|
@@ -26,6 +27,7 @@ class VAParameterModel(Base):
|
|
|
26
27
|
scid = Column(Integer, nullable=True)
|
|
27
28
|
so = Column(Integer, nullable=True)
|
|
28
29
|
llm_output = Column(Text, nullable=True)
|
|
30
|
+
needs_review = Column(Boolean, nullable=True)
|
|
29
31
|
updated_at = Column(
|
|
30
32
|
DateTime,
|
|
31
33
|
nullable=False,
|
|
@@ -237,8 +237,8 @@ cs_models/resources/DOILink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
237
237
|
cs_models/resources/DOILink/models.py,sha256=RZdBb9lnNlhzk4U8nRlrauIvwIJ-G5TfJhvBTtvYqio,345
|
|
238
238
|
cs_models/resources/DOILink/schemas.py,sha256=E3Oag9tyQ41iYiwfMjVB0_SOX7DgdxaJqps7UsQS3Xc,313
|
|
239
239
|
cs_models/resources/Deal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
|
-
cs_models/resources/Deal/models.py,sha256=
|
|
241
|
-
cs_models/resources/Deal/schemas.py,sha256=
|
|
240
|
+
cs_models/resources/Deal/models.py,sha256=yt3MWJ4xioWLvo4gLhMIOyKaKGqbcSBuBHI6uemvkxA,1203
|
|
241
|
+
cs_models/resources/Deal/schemas.py,sha256=Fnlkj2vdmKcNC09tYnvLEppP1HR4bt0cy7_ol20P9U8,1671
|
|
242
242
|
cs_models/resources/DealCondition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
243
243
|
cs_models/resources/DealCondition/models.py,sha256=-q6W-YKst8eFQsuB8E3s98_VIQWjSIqJFVEdtW_G28M,804
|
|
244
244
|
cs_models/resources/DealCondition/schemas.py,sha256=m8ag-gkWjD6mX3Gbqp2yPQ21gxnEW3eFIUGzywuyFbA,399
|
|
@@ -1048,8 +1048,8 @@ cs_models/resources/VACompanyMap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
1048
1048
|
cs_models/resources/VACompanyMap/models.py,sha256=5CQ-tXrG7OKPBIaBUICykTeeRzXJFP4Pg9TVRK8uzqs,750
|
|
1049
1049
|
cs_models/resources/VACompanyMap/schemas.py,sha256=d1UPxtu6L-scc7HucwOf_6JcQ7G1-8NlfTu8eHzZMd4,1124
|
|
1050
1050
|
cs_models/resources/VAParameter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1051
|
-
cs_models/resources/VAParameter/models.py,sha256=
|
|
1052
|
-
cs_models/resources/VAParameter/schemas.py,sha256=
|
|
1051
|
+
cs_models/resources/VAParameter/models.py,sha256=nbwXEWbwQTb6sZOgrJmrdvWXtfJSwBbnDDNKXlcMgtg,1019
|
|
1052
|
+
cs_models/resources/VAParameter/schemas.py,sha256=ALeooGYwotzvEjrjIEGfJ9yh-iTylgy_iISztZE4cRE,827
|
|
1053
1053
|
cs_models/resources/VAParameterCondition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1054
1054
|
cs_models/resources/VAParameterCondition/models.py,sha256=kkF6fiebAQsClvwALO4WENBRfRkuN1Y36lJaRGD1YOY,953
|
|
1055
1055
|
cs_models/resources/VAParameterCondition/schemas.py,sha256=zq1vaQM2WApJlQs6MzxNa54NG8kf0eQSMw6pzH6z5sk,497
|
|
@@ -1207,7 +1207,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1207
1207
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1208
1208
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1209
1209
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1210
|
-
cs_models-0.0.
|
|
1211
|
-
cs_models-0.0.
|
|
1212
|
-
cs_models-0.0.
|
|
1213
|
-
cs_models-0.0.
|
|
1210
|
+
cs_models-0.0.735.dist-info/METADATA,sha256=nYPmw35d138ErWF6hy9K9BIcT-R2H62jIs8Jba0G0XI,792
|
|
1211
|
+
cs_models-0.0.735.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
1212
|
+
cs_models-0.0.735.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1213
|
+
cs_models-0.0.735.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|