cecil 0.0.7__py3-none-any.whl → 0.0.8__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 cecil might be problematic. Click here for more details.

cecil/models.py CHANGED
@@ -24,7 +24,8 @@ class AOI(BaseModel):
24
24
  name: str
25
25
  geometry: Dict
26
26
  hectares: float
27
- created: datetime.datetime
27
+ created_at: datetime.datetime
28
+ created_by: str
28
29
 
29
30
 
30
31
  class AOICreate(BaseModel):
@@ -48,7 +49,8 @@ class DataRequest(BaseModel):
48
49
  dataset_id: str
49
50
  sub_requests: List[SubRequest]
50
51
  status: DataRequestStatus
51
- created: datetime.datetime
52
+ created_at: datetime.datetime
53
+ created_by: str
52
54
 
53
55
 
54
56
  class DataRequestCreate(BaseModel):
@@ -63,7 +65,8 @@ class Reprojection(BaseModel):
63
65
  data_request_id: str
64
66
  crs: str
65
67
  resolution: float
66
- created: datetime.datetime
68
+ created_at: datetime.datetime
69
+ created_by: str
67
70
 
68
71
 
69
72
  class ReprojectionCreate(BaseModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: cecil
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Python SDK for Cecil Earth
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE.txt
@@ -0,0 +1,7 @@
1
+ cecil/__init__.py,sha256=MF64bwUCd4sm3dvcxZnkb4ujHtxT_KeuXdD0nVieEt4,27
2
+ cecil/client.py,sha256=VEWL90sGYxcj4lkGBwT9k6H0v4rNPdvZy6iGHby7N40,4285
3
+ cecil/models.py,sha256=eSkDhHSCJyW9OsOkK7eMYh4BXY5FI1Z_THOLVLcE8QA,2027
4
+ cecil-0.0.8.dist-info/METADATA,sha256=tJldA9JEIjSvWNlTiKNBQI60r2jFvG6vEBjrnbt67-o,2676
5
+ cecil-0.0.8.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
6
+ cecil-0.0.8.dist-info/licenses/LICENSE.txt,sha256=mUexcmfYx3bG1VIzAdQTOf_NzStYw6-QkKVdUY_d4i4,1066
7
+ cecil-0.0.8.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- cecil/__init__.py,sha256=MF64bwUCd4sm3dvcxZnkb4ujHtxT_KeuXdD0nVieEt4,27
2
- cecil/client.py,sha256=VEWL90sGYxcj4lkGBwT9k6H0v4rNPdvZy6iGHby7N40,4285
3
- cecil/models.py,sha256=srsNT0RKe_mIaodVlnKo71nKPGSc5_o9Y-r988B8Zsw,1958
4
- cecil-0.0.7.dist-info/METADATA,sha256=g2E1P1MyxoT2feDVBhQvndfgS7jAuXOWCLijLgWCxq0,2676
5
- cecil-0.0.7.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
6
- cecil-0.0.7.dist-info/licenses/LICENSE.txt,sha256=mUexcmfYx3bG1VIzAdQTOf_NzStYw6-QkKVdUY_d4i4,1066
7
- cecil-0.0.7.dist-info/RECORD,,
File without changes