Skip to content

Commit f46c228

Browse files
Release 1.16.1
1 parent 76b1d87 commit f46c228

11 files changed

Lines changed: 706 additions & 4 deletions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "polytomic"
33

44
[tool.poetry]
55
name = "polytomic"
6-
version = "1.16.0"
6+
version = "1.16.1"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,6 +1160,96 @@ client.connections.get_connection_type_schema(
11601160
</dl>
11611161

11621162

1163+
</dd>
1164+
</dl>
1165+
</details>
1166+
1167+
<details><summary><code>client.connections.<a href="src/polytomic/connections/client.py">get_type_parameter_values</a>(...)</code></summary>
1168+
<dl>
1169+
<dd>
1170+
1171+
#### 🔌 Usage
1172+
1173+
<dl>
1174+
<dd>
1175+
1176+
<dl>
1177+
<dd>
1178+
1179+
```python
1180+
from polytomic import Polytomic
1181+
1182+
client = Polytomic(
1183+
version="YOUR_VERSION",
1184+
token="YOUR_TOKEN",
1185+
)
1186+
client.connections.get_type_parameter_values(
1187+
type="type",
1188+
field="field",
1189+
)
1190+
1191+
```
1192+
</dd>
1193+
</dl>
1194+
</dd>
1195+
</dl>
1196+
1197+
#### ⚙️ Parameters
1198+
1199+
<dl>
1200+
<dd>
1201+
1202+
<dl>
1203+
<dd>
1204+
1205+
**type:** `str`
1206+
1207+
</dd>
1208+
</dl>
1209+
1210+
<dl>
1211+
<dd>
1212+
1213+
**field:** `str`
1214+
1215+
</dd>
1216+
</dl>
1217+
1218+
<dl>
1219+
<dd>
1220+
1221+
**connection_id:** `typing.Optional[str]`
1222+
1223+
</dd>
1224+
</dl>
1225+
1226+
<dl>
1227+
<dd>
1228+
1229+
**parameters:** `typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]`
1230+
1231+
</dd>
1232+
</dl>
1233+
1234+
<dl>
1235+
<dd>
1236+
1237+
**query:** `typing.Optional[str]`
1238+
1239+
</dd>
1240+
</dl>
1241+
1242+
<dl>
1243+
<dd>
1244+
1245+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
1246+
1247+
</dd>
1248+
</dl>
1249+
</dd>
1250+
</dl>
1251+
1252+
11631253
</dd>
11641254
</dl>
11651255
</details>
@@ -1859,6 +1949,80 @@ client.connections.get_parameter_values(
18591949
</dl>
18601950

18611951

1952+
</dd>
1953+
</dl>
1954+
</details>
1955+
1956+
<details><summary><code>client.connections.<a href="src/polytomic/connections/client.py">api_v_2_create_shared_connection</a>(...)</code></summary>
1957+
<dl>
1958+
<dd>
1959+
1960+
#### 🔌 Usage
1961+
1962+
<dl>
1963+
<dd>
1964+
1965+
<dl>
1966+
<dd>
1967+
1968+
```python
1969+
from polytomic import Polytomic
1970+
1971+
client = Polytomic(
1972+
version="YOUR_VERSION",
1973+
token="YOUR_TOKEN",
1974+
)
1975+
client.connections.api_v_2_create_shared_connection(
1976+
id="248df4b7-aa70-47b8-a036-33ac447e668d",
1977+
organization_id="248df4b7-aa70-47b8-a036-33ac447e668d",
1978+
)
1979+
1980+
```
1981+
</dd>
1982+
</dl>
1983+
</dd>
1984+
</dl>
1985+
1986+
#### ⚙️ Parameters
1987+
1988+
<dl>
1989+
<dd>
1990+
1991+
<dl>
1992+
<dd>
1993+
1994+
**id:** `str`
1995+
1996+
</dd>
1997+
</dl>
1998+
1999+
<dl>
2000+
<dd>
2001+
2002+
**organization_id:** `str`
2003+
2004+
</dd>
2005+
</dl>
2006+
2007+
<dl>
2008+
<dd>
2009+
2010+
**name:** `typing.Optional[str]`
2011+
2012+
</dd>
2013+
</dl>
2014+
2015+
<dl>
2016+
<dd>
2017+
2018+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
2019+
2020+
</dd>
2021+
</dl>
2022+
</dd>
2023+
</dl>
2024+
2025+
18622026
</dd>
18632027
</dl>
18642028
</details>
@@ -5496,6 +5660,14 @@ client.users.create(
54965660
<dl>
54975661
<dd>
54985662

5663+
**role_ids:** `typing.Optional[typing.Sequence[str]]`
5664+
5665+
</dd>
5666+
</dl>
5667+
5668+
<dl>
5669+
<dd>
5670+
54995671
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
55005672

55015673
</dd>
@@ -5645,6 +5817,14 @@ client.users.update(
56455817
<dl>
56465818
<dd>
56475819

5820+
**role_ids:** `typing.Optional[typing.Sequence[str]]`
5821+
5822+
</dd>
5823+
</dl>
5824+
5825+
<dl>
5826+
<dd>
5827+
56485828
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
56495829

56505830
</dd>

src/polytomic/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
CreateConnectionResponseEnvelope,
7070
CreateConnectionResponseSchema,
7171
CreateModelRequest,
72+
CreateSharedConnectionResponseSchema,
7273
Enrichment,
7374
Event,
7475
EventBody,
@@ -177,6 +178,7 @@
177178
UtilEnumValue,
178179
UtilFieldType,
179180
V2ConnectionForm,
181+
V2CreateSharedConnectionResponseEnvelope,
180182
V2EnricherConfiguration,
181183
V2EnricherMapping,
182184
V2ExecutionLogType,
@@ -305,6 +307,7 @@
305307
"CreateConnectionResponseEnvelope",
306308
"CreateConnectionResponseSchema",
307309
"CreateModelRequest",
310+
"CreateSharedConnectionResponseSchema",
308311
"Enrichment",
309312
"Event",
310313
"EventBody",
@@ -421,6 +424,7 @@
421424
"UtilFieldType",
422425
"V2ConnectionForm",
423426
"V2CreateBulkSyncRequestSchemasItem",
427+
"V2CreateSharedConnectionResponseEnvelope",
424428
"V2EnricherConfiguration",
425429
"V2EnricherMapping",
426430
"V2ExecutionLogType",

0 commit comments

Comments
 (0)