deeporigin-data-sdk 0.1.0a42__py3-none-any.whl → 0.1.0a44__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.
@@ -767,6 +767,9 @@ else:
767
767
 
768
768
  class SyncHttpxClientWrapper(DefaultHttpxClient):
769
769
  def __del__(self) -> None:
770
+ if self.is_closed:
771
+ return
772
+
770
773
  try:
771
774
  self.close()
772
775
  except Exception:
@@ -1334,6 +1337,9 @@ else:
1334
1337
 
1335
1338
  class AsyncHttpxClientWrapper(DefaultAsyncHttpxClient):
1336
1339
  def __del__(self) -> None:
1340
+ if self.is_closed:
1341
+ return
1342
+
1337
1343
  try:
1338
1344
  # TODO(someday): support non asyncio runtimes here
1339
1345
  asyncio.get_running_loop().create_task(self.aclose())
@@ -1452,6 +1452,7 @@ class DeeporiginData(SyncAPIClient):
1452
1452
  *,
1453
1453
  column_id: str,
1454
1454
  database_id: str,
1455
+ limit: float | NotGiven = NOT_GIVEN,
1455
1456
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1456
1457
  # The extra values given here take precedence over values defined on the client or passed to this method.
1457
1458
  extra_headers: Headers | None = None,
@@ -1477,6 +1478,7 @@ class DeeporiginData(SyncAPIClient):
1477
1478
  {
1478
1479
  "column_id": column_id,
1479
1480
  "database_id": database_id,
1481
+ "limit": limit,
1480
1482
  },
1481
1483
  client_list_database_column_unique_values_v2_params.ClientListDatabaseColumnUniqueValuesV2Params,
1482
1484
  ),
@@ -3282,6 +3284,7 @@ class AsyncDeeporiginData(AsyncAPIClient):
3282
3284
  *,
3283
3285
  column_id: str,
3284
3286
  database_id: str,
3287
+ limit: float | NotGiven = NOT_GIVEN,
3285
3288
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
3286
3289
  # The extra values given here take precedence over values defined on the client or passed to this method.
3287
3290
  extra_headers: Headers | None = None,
@@ -3307,6 +3310,7 @@ class AsyncDeeporiginData(AsyncAPIClient):
3307
3310
  {
3308
3311
  "column_id": column_id,
3309
3312
  "database_id": database_id,
3313
+ "limit": limit,
3310
3314
  },
3311
3315
  client_list_database_column_unique_values_v2_params.ClientListDatabaseColumnUniqueValuesV2Params,
3312
3316
  ),
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "deeporigin_data"
4
- __version__ = "0.1.0-alpha.42" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.44" # x-release-please-version