canvas 0.7.0__py3-none-any.whl → 0.7.1__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 canvas might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: canvas
3
- Version: 0.7.0
3
+ Version: 0.7.1
4
4
  Summary: SDK to customize event-driven actions in your Canvas instance
5
5
  License: MIT
6
6
  Author: Canvas Team
@@ -167,11 +167,11 @@ canvas_sdk/utils/tests.py,sha256=t3MScbIfzXkQttMIvj0dRzJlFVS8LFU8WgWRrChM-H0,193
167
167
  canvas_sdk/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
168
  canvas_sdk/v1/data/__init__.py,sha256=DovVoH2i4LJmtVcip8JoQUhecXkIWkOeVclKKJzCUBM,241
169
169
  canvas_sdk/v1/data/allergy_intolerance.py,sha256=KJg7UR8BJMuASWL5zXZ57JTmC0TQT7FAnODPvdq2mFg,2093
170
- canvas_sdk/v1/data/base.py,sha256=B8Jfdkh0V4jq0apKLv3XZBHFS5gUw0VnePfV34sr77s,6181
170
+ canvas_sdk/v1/data/base.py,sha256=SBnAVSrUvh2lAP5UuYFDlJQ-xT2aQzWyzzMIjhhfS4s,6195
171
171
  canvas_sdk/v1/data/billing.py,sha256=8zZ8by4rdRmDBXH7mwwxuKC8lQ2NueF-EyzBh3y9Gh8,2046
172
172
  canvas_sdk/v1/data/command.py,sha256=z9LHw95Vq8efZE5y9r-Ei-Yzt8qj-o-BE3x9BBb4yPQ,945
173
173
  canvas_sdk/v1/data/common.py,sha256=cx4MYTjCrf7Vja0WUKuY1lUPV9Uy7eapBipsx-clZ5g,3513
174
- canvas_sdk/v1/data/condition.py,sha256=VGNE6bQrA_lflsV_bP71IzwMkim73vW5J083uVyEy0c,1921
174
+ canvas_sdk/v1/data/condition.py,sha256=EHDb9o1ixXFLZKODCpp-2Wvhc6OmiA0ENPSzRId6pAU,1858
175
175
  canvas_sdk/v1/data/detected_issue.py,sha256=c1rKZuPV_tTp_1yDJJa88gIsixpPV_F-a3eooje8BW8,1710
176
176
  canvas_sdk/v1/data/device.py,sha256=uxeQRT8ljzBmDwsARFDB9MZKAVAKOA-pu4nAa6fcHeU,1655
177
177
  canvas_sdk/v1/data/imaging.py,sha256=z6CtVcBYv8EL7fxzT0pWPUuh1mt5XFPlRDNNbOjvLng,4303
@@ -250,7 +250,7 @@ plugin_runner/tests/test_sandbox.py,sha256=I44rz0sbxqtWm6mAG8fGhneE1yu9M-K3PMkE4
250
250
  pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
251
251
  pubsub/pubsub.py,sha256=pyTW0JU8mtaqiAV6g6xjZwel1CVy2EonPMU-_vkmhUM,1044
252
252
  settings.py,sha256=to4MXxHXTnDhhPpc8JbPuIMtxPX9cCZFuE5tfBwbROQ,2065
253
- canvas-0.7.0.dist-info/METADATA,sha256=jaKmJLPh7Rl3_e4HrmNU2m5sTwDmZZsZhuHnw-IfNdQ,4663
254
- canvas-0.7.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
255
- canvas-0.7.0.dist-info/entry_points.txt,sha256=VSmSo1IZ3aEfL7enmLmlWSraS_IIkoXNVeyXzgRxFiY,46
256
- canvas-0.7.0.dist-info/RECORD,,
253
+ canvas-0.7.1.dist-info/METADATA,sha256=YAoFCVq9zqh6gJAfMFSVEwByfyGgc-rygPuDLhsO80w,4663
254
+ canvas-0.7.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
255
+ canvas-0.7.1.dist-info/entry_points.txt,sha256=VSmSo1IZ3aEfL7enmLmlWSraS_IIkoXNVeyXzgRxFiY,46
256
+ canvas-0.7.1.dist-info/RECORD,,
@@ -158,13 +158,13 @@ class TimeframeLookupQuerySetMixin(TimeframeLookupQuerySetProtocol):
158
158
  )
159
159
 
160
160
 
161
- class ValueSetLookupQuerySet(BaseQuerySet, ValueSetLookupQuerySetMixin):
161
+ class ValueSetLookupQuerySet(CommittableQuerySet, ValueSetLookupQuerySetMixin):
162
162
  """A class that includes methods for looking up value sets."""
163
163
 
164
164
  pass
165
165
 
166
166
 
167
- class ValueSetLookupByNameQuerySet(BaseQuerySet, ValueSetLookupByNameQuerySetMixin):
167
+ class ValueSetLookupByNameQuerySet(CommittableQuerySet, ValueSetLookupByNameQuerySetMixin):
168
168
  """A class that includes methods for looking up value sets by name."""
169
169
 
170
170
  pass
@@ -1,11 +1,7 @@
1
1
  from django.db import models
2
2
  from django.db.models import TextChoices
3
3
 
4
- from canvas_sdk.v1.data.base import (
5
- CommittableModelManager,
6
- CommittableQuerySet,
7
- ValueSetLookupQuerySet,
8
- )
4
+ from canvas_sdk.v1.data.base import ValueSetLookupQuerySet
9
5
  from canvas_sdk.v1.data.patient import Patient
10
6
  from canvas_sdk.v1.data.user import CanvasUser
11
7
 
File without changes