cs-models 0.0.757__py3-none-any.whl → 0.0.758__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/{BoxDrive → ExternalDrive}/models.py +5 -2
- cs_models/resources/{BoxDrive → ExternalDrive}/schemas.py +3 -1
- {cs_models-0.0.757.dist-info → cs_models-0.0.758.dist-info}/METADATA +1 -1
- {cs_models-0.0.757.dist-info → cs_models-0.0.758.dist-info}/RECORD +7 -7
- /cs_models/resources/{BoxDrive → ExternalDrive}/__init__.py +0 -0
- {cs_models-0.0.757.dist-info → cs_models-0.0.758.dist-info}/WHEEL +0 -0
- {cs_models-0.0.757.dist-info → cs_models-0.0.758.dist-info}/top_level.txt +0 -0
|
@@ -5,18 +5,21 @@ from sqlalchemy import (
|
|
|
5
5
|
Integer,
|
|
6
6
|
DateTime,
|
|
7
7
|
String,
|
|
8
|
+
Text,
|
|
8
9
|
)
|
|
9
10
|
|
|
10
11
|
from ...database import Base
|
|
11
12
|
|
|
12
13
|
|
|
13
|
-
class
|
|
14
|
-
__tablename__ = "
|
|
14
|
+
class ExternalDriveModel(Base):
|
|
15
|
+
__tablename__ = "external_drives"
|
|
15
16
|
|
|
16
17
|
id = Column(Integer, primary_key=True)
|
|
17
18
|
user_id = Column(String(128), nullable=False)
|
|
18
19
|
org_id = Column(String(128), nullable=True)
|
|
20
|
+
provider = Column(String(50), nullable=False)
|
|
19
21
|
webhook_id = Column(String(128), nullable=False)
|
|
22
|
+
additional_info = Column(Text, nullable=True)
|
|
20
23
|
updated_at = Column(
|
|
21
24
|
DateTime,
|
|
22
25
|
nullable=False,
|
|
@@ -4,9 +4,11 @@ from marshmallow import (
|
|
|
4
4
|
)
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
class
|
|
7
|
+
class ExternalDriveResourceSchema(Schema):
|
|
8
8
|
id = fields.Integer(dump_only=True)
|
|
9
9
|
user_id = fields.String(required=True)
|
|
10
10
|
org_id = fields.String(allow_none=True)
|
|
11
11
|
webhook_id = fields.String(required=True)
|
|
12
|
+
provider = fields.String(required=True)
|
|
13
|
+
additional_info = fields.String(allow_none=True)
|
|
12
14
|
updated_at = fields.DateTime(dump_only=True)
|
|
@@ -76,9 +76,6 @@ cs_models/resources/Biomarker/schemas.py,sha256=saP7FJfKeUPDHEhKeJqLci9gze3WZYXW
|
|
|
76
76
|
cs_models/resources/BiomarkerSyn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
77
|
cs_models/resources/BiomarkerSyn/models.py,sha256=tYYr76n8CbiC4jaBiJ4krE4FwfPADfkncl_0tnlEsEY,745
|
|
78
78
|
cs_models/resources/BiomarkerSyn/schemas.py,sha256=YTv8CY6hcJcVRpQKlSdZdyD2jwF1Vx0QyhIdKQYUpZg,347
|
|
79
|
-
cs_models/resources/BoxDrive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
-
cs_models/resources/BoxDrive/models.py,sha256=z_5GuMIekqzxIcUK7Mp5ZxbdakXEgl1x-rJcmp-x-3o,668
|
|
81
|
-
cs_models/resources/BoxDrive/schemas.py,sha256=fzcqZLogk9kEoH2qwAWjRqeBok9MqHAJ2smUo95Bkk4,314
|
|
82
79
|
cs_models/resources/CTProductsView/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
80
|
cs_models/resources/CTProductsView/models.py,sha256=MhnIRsYjgkkuSSUF6JkqrHzFMqzbbSsIU-CkEjSEEDI,1042
|
|
84
81
|
cs_models/resources/CTProductsView/schemas.py,sha256=7lU2GfAVYxVek1TG-w5qdFA8Th2KZvfOtkLfMl5lDo4,1254
|
|
@@ -316,6 +313,9 @@ cs_models/resources/EventsQueue/schemas.py,sha256=X6EGAog4ZTBraLJ1w0FOU88KWdmRiu
|
|
|
316
313
|
cs_models/resources/ExplorerColumn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
314
|
cs_models/resources/ExplorerColumn/models.py,sha256=t448jSUDUNpN3MPlA1-nf2H-K9KVfMkKIV7ruB-DSks,799
|
|
318
315
|
cs_models/resources/ExplorerColumn/schemas.py,sha256=0qsNjOCkilZNa_Ly083dzp43h72MrAFM39dp2s8CnmY,442
|
|
316
|
+
cs_models/resources/ExternalDrive/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
+
cs_models/resources/ExternalDrive/models.py,sha256=JG1oLSesQ5dkjd24jOgq5tcuINjNlwPUcDQtpbX05qw,788
|
|
318
|
+
cs_models/resources/ExternalDrive/schemas.py,sha256=RLZEgL6qqpgQL-e3i_mIFu2ljLvZZhyP_sN17YOfFXA,416
|
|
319
319
|
cs_models/resources/FDADrugReview/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
320
|
cs_models/resources/FDADrugReview/models.py,sha256=LNbBsoTKWHXnEuFpFO99ahTnrq61vOurMVeqjmK-gqE,931
|
|
321
321
|
cs_models/resources/FDADrugReview/schemas.py,sha256=vB63ULqHq8v0eIm7KsYnhGM95vCES8bnMGQBsHwrRBM,651
|
|
@@ -1246,7 +1246,7 @@ cs_models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1246
1246
|
cs_models/utils/alchemy.py,sha256=fhINGFn41owJ2DLXQKXAAtLqeZ1BRzD_qU0wPK_bsGQ,1598
|
|
1247
1247
|
cs_models/utils/utils.py,sha256=bY623DuzycfPQiaOQT2AxfANeWfwr5w76dBuQ813-ns,3664
|
|
1248
1248
|
cs_models/utils/profiling/__init__.py,sha256=N-73vb0M92C975fxgXyBCBjCPELl8Oh21ZY_-tzDnns,569
|
|
1249
|
-
cs_models-0.0.
|
|
1250
|
-
cs_models-0.0.
|
|
1251
|
-
cs_models-0.0.
|
|
1252
|
-
cs_models-0.0.
|
|
1249
|
+
cs_models-0.0.758.dist-info/METADATA,sha256=Y7-c-ryJKMf5eSApdEUT-20ylepB96dN5YhVqQm5lB0,751
|
|
1250
|
+
cs_models-0.0.758.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1251
|
+
cs_models-0.0.758.dist-info/top_level.txt,sha256=M7CA8Nh5t0vRManQ9gHfphhO16uhMqIbfaxr1jPDg18,10
|
|
1252
|
+
cs_models-0.0.758.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|