cs-models 0.0.744__py3-none-any.whl → 0.0.746__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.

@@ -17,6 +17,7 @@ class NCTStudyModel(Base):
17
17
  nct_id = Column(String(128), nullable=False, unique=True)
18
18
  acronym = Column(String(128), nullable=True)
19
19
  brief_title = Column(Text)
20
+ official_title = Column(Text)
20
21
  brief_summary = Column(Text, nullable=True)
21
22
  description = Column(Text, nullable=True)
22
23
  enrollment = Column(Integer, nullable=True)
@@ -36,6 +37,7 @@ class NCTStudyModel(Base):
36
37
  conditions = Column(Text, nullable=True)
37
38
  interventions = Column(Text, nullable=True)
38
39
  industry_flag = Column(Boolean)
40
+ study_keywords = Column(Text)
39
41
  updated_at = Column(
40
42
  DateTime,
41
43
  nullable=False,
@@ -14,6 +14,7 @@ class NCTStudyResourceSchema(Schema):
14
14
  nct_id = fields.String(allow_none=False)
15
15
  acronym = fields.String(allow_none=True)
16
16
  brief_title = fields.String(allow_none=True)
17
+ official_title = fields.String(allow_none=True)
17
18
  brief_summary = fields.String(allow_none=True)
18
19
  description = fields.String(allow_none=True)
19
20
  enrollment = fields.Integer(allow_none=True)
@@ -33,6 +34,7 @@ class NCTStudyResourceSchema(Schema):
33
34
  conditions = fields.String(allow_none=True)
34
35
  interventions = fields.String(allow_none=True)
35
36
  industry_flag = fields.Boolean()
37
+ study_keywords = fields.String(allow_none=True)
36
38
  updated_at = fields.DateTime(dump_only=True)
37
39
 
38
40
  @pre_load
@@ -17,7 +17,7 @@ class UserAutomatedDigestModel(Base):
17
17
  id = Column(Integer, primary_key=True)
18
18
  user_id = Column(String(128), nullable=False)
19
19
  type = Column(String(50), nullable=False)
20
- type_id = Column(Integer, nullable=False)
20
+ type_id = Column(String(50), nullable=False)
21
21
  digest_name = Column(String(128), nullable=False)
22
22
  created_at = Column(DateTime, nullable=False)
23
23
  assistant_user_query_id = Column(
@@ -11,7 +11,7 @@ class UserAutomatedDigestResourceSchema(Schema):
11
11
  id = fields.Integer(dump_only=True)
12
12
  user_id = fields.String(required=True, validate=not_blank)
13
13
  type = fields.String(required=True)
14
- type_id = fields.Integer(required=True)
14
+ type_id = fields.String(required=True)
15
15
  digest_name = fields.String(required=True)
16
16
  created_at = fields.DateTime(required=True)
17
17
  assistant_user_query_id = fields.Integer(required=True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cs-models
3
- Version: 0.0.744
3
+ Version: 0.0.746
4
4
  Summary: MySQL db models
5
5
  Home-page: https://github.com/mindgram/cs-models
6
6
  Author: Shrey Verma
@@ -612,8 +612,8 @@ cs_models/resources/NCTResult/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
612
612
  cs_models/resources/NCTResult/models.py,sha256=8m9NfIcfc9fS3dsI_JUFpi-Kx1oZ2X5zbJTHl6kRVB0,683
613
613
  cs_models/resources/NCTResult/schemas.py,sha256=JhRcOoAhbv1YwIevI0tVXi7iIsntBGegClIZt9fUflE,363
614
614
  cs_models/resources/NCTStudy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
615
- cs_models/resources/NCTStudy/models.py,sha256=RllgHTVagUtF0RYsuAV-OlEPXqBfbqtriGRAq9WVEbg,1610
616
- cs_models/resources/NCTStudy/schemas.py,sha256=J2qkGU1hHmwmPxRLgkOmlxpTLXWwjOvjk40RGdQHqSQ,1870
615
+ cs_models/resources/NCTStudy/models.py,sha256=zpNWMAaisTiCt-udA46Q2-OxX6QkQumjT4nK4zDohwg,1678
616
+ cs_models/resources/NCTStudy/schemas.py,sha256=jb9TDjA8-UICzVdLBa1eHUEjTZ1hj2ApUbYeyTacDno,1974
617
617
  cs_models/resources/NCTSubsidiary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
618
618
  cs_models/resources/NCTSubsidiary/models.py,sha256=X8MiopYVdGerWtV_scBnIeYCzYxWSfnelHpvDMfag98,1027
619
619
  cs_models/resources/NCTSubsidiary/schemas.py,sha256=Q1menHAgm1_FUBECA2SF5Ri0vgovG_fIbvEpk4Cc6w0,517
@@ -981,8 +981,8 @@ cs_models/resources/UserActivity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
981
981
  cs_models/resources/UserActivity/models.py,sha256=k_SbdhuGlmG1bPhuMxWZ_cXpcha7dsjsVU-Nyj1GUPs,767
982
982
  cs_models/resources/UserActivity/schemas.py,sha256=NH92c_PUDiYCNRIO-t1anCNf5Mg8Vyw9jC7ZZY811pk,439
983
983
  cs_models/resources/UserAutomatedDigest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
984
- cs_models/resources/UserAutomatedDigest/models.py,sha256=LeRzZ2m6kqTB3oVSHKF-xsUMuTbXhNn_pSaNEAeTPXw,996
985
- cs_models/resources/UserAutomatedDigest/schemas.py,sha256=w93jcJERcaxqOmLjZospOCH7TRP1fafxgEDUjoTuvV4,628
984
+ cs_models/resources/UserAutomatedDigest/models.py,sha256=wRGSN3ktFV12RMU5AjiIfzcij5ZcJeTLS6EBQwvrOlY,999
985
+ cs_models/resources/UserAutomatedDigest/schemas.py,sha256=0rA_HKpiSPHAt5BTBZI5jOApBLa2LrDdV_rXBbxdTfQ,627
986
986
  cs_models/resources/UserCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
987
987
  cs_models/resources/UserCollection/models.py,sha256=NpjpyoD0Nm_0HIqW5RjlIit9rEvwYLiO9tHf8p8tBAg,768
988
988
  cs_models/resources/UserCollection/schemas.py,sha256=AX-g-djVvDXnblrxTpSLSy-oNsv6LBKpBsBT1XNiPQA,329
@@ -1222,7 +1222,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1222
1222
  cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
1223
1223
  cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
1224
1224
  cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
1225
- cs_models-0.0.744.dist-info/METADATA,sha256=3KvRo4dGGlnhJS992NAlUcdS1rRLkxNsYCouGYvm1Io,792
1226
- cs_models-0.0.744.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
1227
- cs_models-0.0.744.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
1228
- cs_models-0.0.744.dist-info/RECORD,,
1225
+ cs_models-0.0.746.dist-info/METADATA,sha256=tM_QPbIjFNdCPE51TFLWoGwYI7E62ZEWpLyM0ZFm4Ic,792
1226
+ cs_models-0.0.746.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
1227
+ cs_models-0.0.746.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
1228
+ cs_models-0.0.746.dist-info/RECORD,,