Skip to content

Commit 4d83331

Browse files
Release 1.3.0
1 parent bd7d4a6 commit 4d83331

File tree

183 files changed

+6959
-4868
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+6959
-4868
lines changed

poetry.lock

Lines changed: 129 additions & 129 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "polytomic"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -15,7 +15,7 @@ pydantic = ">= 1.9.2"
1515
typing_extensions = ">= 4.0.0"
1616

1717
[tool.poetry.dev-dependencies]
18-
mypy = "^1.8.0"
18+
mypy = "1.9.0"
1919
pytest = "^7.4.0"
2020
pytest-asyncio = "^0.23.5"
2121
python-dateutil = "^2.9.0"

src/polytomic/__init__.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@
5858
ExecutionLogsResponseEnvelope,
5959
ExecutionStatus,
6060
Filter,
61+
FilterFieldReferenceType,
62+
FilterFunction,
6163
GetConnectionMetaEnvelope,
6264
GetExecutionResponseEnvelope,
6365
GetExecutionResponseSchema,
@@ -85,6 +87,8 @@
8587
ModelRelationTo,
8688
ModelResponse,
8789
ModelResponseEnvelope,
90+
ModelSample,
91+
ModelSampleResponseEnvelope,
8892
ModelSyncField,
8993
ModelSyncResponse,
9094
ModelSyncResponseEnvelope,
@@ -112,6 +116,7 @@
112116
Schema,
113117
SchemaAssociation,
114118
SchemaField,
119+
SchemaIdentityFunction,
115120
SchemaRecordsResponseEnvelope,
116121
Source,
117122
SourceMeta,
@@ -130,6 +135,7 @@
130135
V2EnricherConfiguration,
131136
V2EnricherMapping,
132137
V2GetEnrichmentInputFieldsResponseEnvelope,
138+
V2SampleRecord,
133139
Webhook,
134140
WebhookEnvelope,
135141
WebhookListEnvelope,
@@ -143,7 +149,7 @@
143149
UnauthorizedError,
144150
UnprocessableEntityError,
145151
)
146-
from .resources import (
152+
from . import (
147153
bulk_sync,
148154
connections,
149155
events,
@@ -219,6 +225,8 @@
219225
"ExecutionLogsResponseEnvelope",
220226
"ExecutionStatus",
221227
"Filter",
228+
"FilterFieldReferenceType",
229+
"FilterFunction",
222230
"ForbiddenError",
223231
"GetConnectionMetaEnvelope",
224232
"GetExecutionResponseEnvelope",
@@ -248,6 +256,8 @@
248256
"ModelRelationTo",
249257
"ModelResponse",
250258
"ModelResponseEnvelope",
259+
"ModelSample",
260+
"ModelSampleResponseEnvelope",
251261
"ModelSyncField",
252262
"ModelSyncResponse",
253263
"ModelSyncResponseEnvelope",
@@ -277,6 +287,7 @@
277287
"Schema",
278288
"SchemaAssociation",
279289
"SchemaField",
290+
"SchemaIdentityFunction",
280291
"SchemaRecordsResponseEnvelope",
281292
"Source",
282293
"SourceMeta",
@@ -297,6 +308,7 @@
297308
"V2EnricherConfiguration",
298309
"V2EnricherMapping",
299310
"V2GetEnrichmentInputFieldsResponseEnvelope",
311+
"V2SampleRecord",
300312
"Webhook",
301313
"WebhookEnvelope",
302314
"WebhookListEnvelope",
File renamed without changes.

0 commit comments

Comments
 (0)