deeporigin-data-sdk 0.1.0a36__py3-none-any.whl → 0.1.0a38__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.
@@ -8,7 +8,7 @@ from typing_extensions import Self, Literal, override
8
8
 
9
9
  import httpx
10
10
 
11
- from . import resources, _exceptions
11
+ from . import _exceptions
12
12
  from ._qs import Querystring
13
13
  from .types import (
14
14
  client_list_rows_params,
@@ -141,7 +141,6 @@ __all__ = [
141
141
  "Transport",
142
142
  "ProxiesTypes",
143
143
  "RequestOptions",
144
- "resources",
145
144
  "DeeporiginData",
146
145
  "AsyncDeeporiginData",
147
146
  "Client",
@@ -46,6 +46,7 @@ from ._utils import (
46
46
  strip_not_given,
47
47
  extract_type_arg,
48
48
  is_annotated_type,
49
+ is_type_alias_type,
49
50
  strip_annotated_type,
50
51
  )
51
52
  from ._compat import (
@@ -428,6 +429,8 @@ def construct_type(*, value: object, type_: object) -> object:
428
429
  # we allow `object` as the input type because otherwise, passing things like
429
430
  # `Literal['value']` will be reported as a type error by type checkers
430
431
  type_ = cast("type[object]", type_)
432
+ if is_type_alias_type(type_):
433
+ type_ = type_.__value__ # type: ignore[unreachable]
431
434
 
432
435
  # unwrap `Annotated[T, ...]` -> `T`
433
436
  if is_annotated_type(type_):
@@ -25,7 +25,7 @@ import httpx
25
25
  import pydantic
26
26
 
27
27
  from ._types import NoneType
28
- from ._utils import is_given, extract_type_arg, is_annotated_type, extract_type_var_from_base
28
+ from ._utils import is_given, extract_type_arg, is_annotated_type, is_type_alias_type, extract_type_var_from_base
29
29
  from ._models import BaseModel, is_basemodel
30
30
  from ._constants import RAW_RESPONSE_HEADER, OVERRIDE_CAST_TO_HEADER
31
31
  from ._streaming import Stream, AsyncStream, is_stream_class_type, extract_stream_chunk_type
@@ -126,9 +126,15 @@ class BaseAPIResponse(Generic[R]):
126
126
  )
127
127
 
128
128
  def _parse(self, *, to: type[_T] | None = None) -> R | _T:
129
+ cast_to = to if to is not None else self._cast_to
130
+
131
+ # unwrap `TypeAlias('Name', T)` -> `T`
132
+ if is_type_alias_type(cast_to):
133
+ cast_to = cast_to.__value__ # type: ignore[unreachable]
134
+
129
135
  # unwrap `Annotated[T, ...]` -> `T`
130
- if to and is_annotated_type(to):
131
- to = extract_type_arg(to, 0)
136
+ if cast_to and is_annotated_type(cast_to):
137
+ cast_to = extract_type_arg(cast_to, 0)
132
138
 
133
139
  if self._is_sse_stream:
134
140
  if to:
@@ -164,18 +170,12 @@ class BaseAPIResponse(Generic[R]):
164
170
  return cast(
165
171
  R,
166
172
  stream_cls(
167
- cast_to=self._cast_to,
173
+ cast_to=cast_to,
168
174
  response=self.http_response,
169
175
  client=cast(Any, self._client),
170
176
  ),
171
177
  )
172
178
 
173
- cast_to = to if to is not None else self._cast_to
174
-
175
- # unwrap `Annotated[T, ...]` -> `T`
176
- if is_annotated_type(cast_to):
177
- cast_to = extract_type_arg(cast_to, 0)
178
-
179
179
  if cast_to is NoneType:
180
180
  return cast(R, None)
181
181
 
@@ -39,6 +39,7 @@ from ._typing import (
39
39
  is_iterable_type as is_iterable_type,
40
40
  is_required_type as is_required_type,
41
41
  is_annotated_type as is_annotated_type,
42
+ is_type_alias_type as is_type_alias_type,
42
43
  strip_annotated_type as strip_annotated_type,
43
44
  extract_type_var_from_base as extract_type_var_from_base,
44
45
  )
@@ -1,8 +1,17 @@
1
1
  from __future__ import annotations
2
2
 
3
+ import sys
4
+ import typing
5
+ import typing_extensions
3
6
  from typing import Any, TypeVar, Iterable, cast
4
7
  from collections import abc as _c_abc
5
- from typing_extensions import Required, Annotated, get_args, get_origin
8
+ from typing_extensions import (
9
+ TypeIs,
10
+ Required,
11
+ Annotated,
12
+ get_args,
13
+ get_origin,
14
+ )
6
15
 
7
16
  from .._types import InheritsGeneric
8
17
  from .._compat import is_union as _is_union
@@ -36,6 +45,26 @@ def is_typevar(typ: type) -> bool:
36
45
  return type(typ) == TypeVar # type: ignore
37
46
 
38
47
 
48
+ _TYPE_ALIAS_TYPES: tuple[type[typing_extensions.TypeAliasType], ...] = (typing_extensions.TypeAliasType,)
49
+ if sys.version_info >= (3, 12):
50
+ _TYPE_ALIAS_TYPES = (*_TYPE_ALIAS_TYPES, typing.TypeAliasType)
51
+
52
+
53
+ def is_type_alias_type(tp: Any, /) -> TypeIs[typing_extensions.TypeAliasType]:
54
+ """Return whether the provided argument is an instance of `TypeAliasType`.
55
+
56
+ ```python
57
+ type Int = int
58
+ is_type_alias_type(Int)
59
+ # > True
60
+ Str = TypeAliasType("Str", str)
61
+ is_type_alias_type(Str)
62
+ # > True
63
+ ```
64
+ """
65
+ return isinstance(tp, _TYPE_ALIAS_TYPES)
66
+
67
+
39
68
  # Extracts T from Annotated[T, ...] or from Required[Annotated[T, ...]]
40
69
  def strip_annotated_type(typ: type) -> type:
41
70
  if is_required_type(typ) or is_annotated_type(typ):
@@ -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.36" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.38" # x-release-please-version
@@ -56,6 +56,8 @@ class ColumnAddColumnDate(TypedDict, total=False):
56
56
 
57
57
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
58
58
 
59
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
60
+
59
61
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
60
62
 
61
63
 
@@ -77,6 +79,8 @@ class ColumnAddColumnEditor(TypedDict, total=False):
77
79
 
78
80
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
79
81
 
82
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
83
+
80
84
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
81
85
 
82
86
 
@@ -104,6 +108,8 @@ class ColumnAddColumnExpression(TypedDict, total=False):
104
108
 
105
109
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
106
110
 
111
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
112
+
107
113
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
108
114
 
109
115
 
@@ -131,6 +137,8 @@ class ColumnAddColumnFile(TypedDict, total=False):
131
137
 
132
138
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
133
139
 
140
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
141
+
134
142
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
135
143
 
136
144
 
@@ -171,6 +179,8 @@ class ColumnAddColumnFloat(TypedDict, total=False):
171
179
 
172
180
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
173
181
 
182
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
183
+
174
184
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
175
185
 
176
186
 
@@ -211,6 +221,8 @@ class ColumnAddColumnInteger(TypedDict, total=False):
211
221
 
212
222
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
213
223
 
224
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
225
+
214
226
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
215
227
 
216
228
 
@@ -234,6 +246,8 @@ class ColumnAddColumnReference(TypedDict, total=False):
234
246
 
235
247
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
236
248
 
249
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
250
+
237
251
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
238
252
 
239
253
 
@@ -263,6 +277,8 @@ class ColumnAddColumnSelect(TypedDict, total=False):
263
277
 
264
278
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
265
279
 
280
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
281
+
266
282
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
267
283
 
268
284
 
@@ -284,6 +300,8 @@ class ColumnAddColumnText(TypedDict, total=False):
284
300
 
285
301
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
286
302
 
303
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
304
+
287
305
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
288
306
 
289
307
 
@@ -305,6 +323,8 @@ class ColumnAddColumnURL(TypedDict, total=False):
305
323
 
306
324
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
307
325
 
326
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
327
+
308
328
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
309
329
 
310
330
 
@@ -326,6 +346,8 @@ class ColumnAddColumnUser(TypedDict, total=False):
326
346
 
327
347
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
328
348
 
349
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
350
+
329
351
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
330
352
 
331
353
 
@@ -61,6 +61,8 @@ class AddColumnAddColumnDate(TypedDict, total=False):
61
61
 
62
62
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
63
63
 
64
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
65
+
64
66
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
65
67
 
66
68
 
@@ -82,6 +84,8 @@ class AddColumnAddColumnEditor(TypedDict, total=False):
82
84
 
83
85
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
84
86
 
87
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
88
+
85
89
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
86
90
 
87
91
 
@@ -109,6 +113,8 @@ class AddColumnAddColumnExpression(TypedDict, total=False):
109
113
 
110
114
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
111
115
 
116
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
117
+
112
118
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
113
119
 
114
120
 
@@ -136,6 +142,8 @@ class AddColumnAddColumnFile(TypedDict, total=False):
136
142
 
137
143
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
138
144
 
145
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
146
+
139
147
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
140
148
 
141
149
 
@@ -176,6 +184,8 @@ class AddColumnAddColumnFloat(TypedDict, total=False):
176
184
 
177
185
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
178
186
 
187
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
188
+
179
189
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
180
190
 
181
191
 
@@ -216,6 +226,8 @@ class AddColumnAddColumnInteger(TypedDict, total=False):
216
226
 
217
227
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
218
228
 
229
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
230
+
219
231
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
220
232
 
221
233
 
@@ -239,6 +251,8 @@ class AddColumnAddColumnReference(TypedDict, total=False):
239
251
 
240
252
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
241
253
 
254
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
255
+
242
256
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
243
257
 
244
258
 
@@ -268,6 +282,8 @@ class AddColumnAddColumnSelect(TypedDict, total=False):
268
282
 
269
283
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
270
284
 
285
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
286
+
271
287
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
272
288
 
273
289
 
@@ -289,6 +305,8 @@ class AddColumnAddColumnText(TypedDict, total=False):
289
305
 
290
306
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
291
307
 
308
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
309
+
292
310
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
293
311
 
294
312
 
@@ -310,6 +328,8 @@ class AddColumnAddColumnURL(TypedDict, total=False):
310
328
 
311
329
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
312
330
 
331
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
332
+
313
333
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
314
334
 
315
335
 
@@ -331,6 +351,8 @@ class AddColumnAddColumnUser(TypedDict, total=False):
331
351
 
332
352
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
333
353
 
354
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
355
+
334
356
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
335
357
 
336
358
 
@@ -31,4 +31,6 @@ class AddColumnBase(BaseModel):
31
31
 
32
32
  is_required: Optional[bool] = FieldInfo(alias="isRequired", default=None)
33
33
 
34
+ json_field: Optional[str] = FieldInfo(alias="jsonField", default=None)
35
+
34
36
  system_type: Optional[Literal["name", "bodyDocument"]] = FieldInfo(alias="systemType", default=None)
@@ -27,4 +27,6 @@ class AddColumnUnion(BaseModel):
27
27
 
28
28
  is_required: Optional[bool] = FieldInfo(alias="isRequired", default=None)
29
29
 
30
+ json_field: Optional[str] = FieldInfo(alias="jsonField", default=None)
31
+
30
32
  system_type: Optional[Literal["name", "bodyDocument"]] = FieldInfo(alias="systemType", default=None)
@@ -32,4 +32,6 @@ class AddColumnBase(TypedDict, total=False):
32
32
 
33
33
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
34
34
 
35
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
36
+
35
37
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
@@ -28,4 +28,6 @@ class AddColumnUnion(TypedDict, total=False):
28
28
 
29
29
  is_required: Annotated[bool, PropertyInfo(alias="isRequired")]
30
30
 
31
+ json_field: Annotated[str, PropertyInfo(alias="jsonField")]
32
+
31
33
  system_type: Annotated[Literal["name", "bodyDocument"], PropertyInfo(alias="systemType")]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deeporigin_data_sdk
3
- Version: 0.1.0a36
3
+ Version: 0.1.0a38
4
4
  Summary: The official Python library for the deeporigin_data API
5
5
  Project-URL: Homepage, https://github.com/deeporiginbio/deeporigin-data-sdk
6
6
  Project-URL: Repository, https://github.com/deeporiginbio/deeporigin-data-sdk
@@ -27,7 +27,7 @@ Requires-Dist: distro<2,>=1.7.0
27
27
  Requires-Dist: httpx<1,>=0.23.0
28
28
  Requires-Dist: pydantic<3,>=1.9.0
29
29
  Requires-Dist: sniffio
30
- Requires-Dist: typing-extensions<5,>=4.7
30
+ Requires-Dist: typing-extensions<5,>=4.10
31
31
  Description-Content-Type: text/markdown
32
32
 
33
33
  # Deeporigin Data Python API library
@@ -346,6 +346,18 @@ client.with_options(http_client=DefaultHttpxClient(...))
346
346
 
347
347
  By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
348
348
 
349
+ ```py
350
+ from deeporigin_data import DeeporiginData
351
+
352
+ with DeeporiginData(
353
+ org_id="My Org ID",
354
+ ) as client:
355
+ # make requests here
356
+ ...
357
+
358
+ # HTTP client is now closed
359
+ ```
360
+
349
361
  ## Versioning
350
362
 
351
363
  This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
@@ -1,26 +1,26 @@
1
1
  deeporigin_data/__init__.py,sha256=g5vq9kCCiWBl8XgJzXdUB9AIdRypOEj9pQH8WJJEVxo,2533
2
2
  deeporigin_data/_base_client.py,sha256=S5oZPMoWvnH4vdTsMwR8KYI6qg4OF6lydyeTmXwndwA,68045
3
- deeporigin_data/_client.py,sha256=HHl30KLhtDRrEKLN41Q51m6yBcZcDFl8-6azbSzUNDU,170041
3
+ deeporigin_data/_client.py,sha256=gw3btWS4DUDmZOwnokS6nasXMnd-WYzIK4dLfhwaA0Q,170013
4
4
  deeporigin_data/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
5
  deeporigin_data/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
6
6
  deeporigin_data/_exceptions.py,sha256=_25MmrwuBf1sxAJESpY5sPn1o5E-aUymr6wDuRSWIng,3236
7
7
  deeporigin_data/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
- deeporigin_data/_models.py,sha256=uhxvXZC0JO7HuGR_GWXH-zYKuptF2rwiGVJfMMfg3fw,28470
8
+ deeporigin_data/_models.py,sha256=iumFIitiWZTGITgF2nwOmEPIJGIEeJaUXhDlpaSN9Wg,28589
9
9
  deeporigin_data/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
10
  deeporigin_data/_resource.py,sha256=tkm4gF9YRotE93j48jTDBSGs8wyVa0E5NS9fj19e38c,1148
11
- deeporigin_data/_response.py,sha256=nzKdjRA8W3Rwgvgv6zCu4LISsdLUPCQjedlOp_NWyUY,28691
11
+ deeporigin_data/_response.py,sha256=Kj-Zi9_3rAr8jDDHy2yTG8SCMF2a7dilTyE-yQO7pag,28747
12
12
  deeporigin_data/_streaming.py,sha256=yG857cOSJD3gbc7mEc2wqfvcPVLMGmYX4hBOqqIT5RE,10132
13
13
  deeporigin_data/_types.py,sha256=HI5vtFJGLEsyOrrWJRSRtUeOSrd8EdoM020wC51GvcI,6152
14
- deeporigin_data/_version.py,sha256=lsw32Nywl6Vl4-cadH5YzwAHEUOajABg8ZwQ-hhwTuU,176
14
+ deeporigin_data/_version.py,sha256=WhUww5tVXJ_iehHwoUYUHzaRgYLqpl9waB_wzMW4-40,176
15
15
  deeporigin_data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- deeporigin_data/_utils/__init__.py,sha256=k266EatJr88V8Zseb7xUimTlCeno9SynRfLwadHP1b4,2016
16
+ deeporigin_data/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  deeporigin_data/_utils/_logs.py,sha256=R7dnUaDs2cdYbq1Ee16dHy863wdcTZRRzubw9KE0qNc,801
18
18
  deeporigin_data/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
19
19
  deeporigin_data/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
20
  deeporigin_data/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
21
21
  deeporigin_data/_utils/_sync.py,sha256=jJl-iCEaZZUAkq4IUtzN1-aMsKTUFaNoNbeYnnpQjIQ,2438
22
22
  deeporigin_data/_utils/_transform.py,sha256=Dkkyr7OveGmOolepcvXmVJWE3kqim4b0nM0h7yWbgeY,13468
23
- deeporigin_data/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
23
+ deeporigin_data/_utils/_typing.py,sha256=nTJz0jcrQbEgxwy4TtAkNxuU0QHHlmc6mQtA6vIR8tg,4501
24
24
  deeporigin_data/_utils/_utils.py,sha256=8UmbPOy_AAr2uUjjFui-VZSrVBHRj6bfNEKRp5YZP2A,12004
25
25
  deeporigin_data/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
26
  deeporigin_data/resources/__init__.py,sha256=ikKh5ucm9qFI-Z42nOKxhBhEI-YHaaxvsSddO_Nx0-Y,86
@@ -28,7 +28,7 @@ deeporigin_data/types/__init__.py,sha256=rWEVTTs8jU5G-8Ua5Aix0ID5AkXImeqfd4TteL4
28
28
  deeporigin_data/types/add_database_column_response.py,sha256=3sM1H23FE_sCUQ2f9NiQA9j8rbbBP-I1rIdGtyHgU48,383
29
29
  deeporigin_data/types/chat_create_thread_response.py,sha256=AZrFyvH7uj-VptxC4DLqq2zTzBTYRiosfNUGDSDe4jE,678
30
30
  deeporigin_data/types/chat_list_messages_response.py,sha256=weE0jVbPTGI-_A72HW2J4hHoG7V8t3ZVTRvpwsmyLJI,1774
31
- deeporigin_data/types/client_add_database_column_params.py,sha256=nmS6w0uctACesgcIFBnnjG99c3t8RPT3CcaKXB3JIEk,11712
31
+ deeporigin_data/types/client_add_database_column_params.py,sha256=E_WeByZ0Ba3lERxHEiegZW8_pT2dFcsjFZu84fAFybw,12427
32
32
  deeporigin_data/types/client_archive_files_params.py,sha256=yQVFRbehaBYuSiILvVZIM0W0KQg2NMdxeboYZt8qorI,417
33
33
  deeporigin_data/types/client_chat_create_thread_params.py,sha256=wIbMeDq0ge6_mei-tLrcO-Y2AzhiBCu7U4UHWRBMDDw,306
34
34
  deeporigin_data/types/client_chat_list_messages_params.py,sha256=cvVdz0bROwXecIiAYrQA57O98AfKRl0Q8C--yWaQO9c,397
@@ -57,7 +57,7 @@ deeporigin_data/types/client_execute_code_async_params.py,sha256=Ohe8X-MGsuf_JzF
57
57
  deeporigin_data/types/client_execute_code_sync_params.py,sha256=4OUGuc1P5ATJz6ocQuL14te1pU9EZD5ocY9yHY4jUcE,451
58
58
  deeporigin_data/types/client_export_database_params.py,sha256=KW29eTgxBu6mFTprhr5VDuVWQmdJWyLcU1iKjYGzI-4,3609
59
59
  deeporigin_data/types/client_get_code_execution_result_params.py,sha256=rtctDcOx0jKB2BiHbrxJZk1KkB9LhlgbGDoO_J3aHhI,346
60
- deeporigin_data/types/client_import_rows_params.py,sha256=hwL3y63n6ce2DcOpOLfpTf3sFy2-0TykdxU37Gac4f4,12153
60
+ deeporigin_data/types/client_import_rows_params.py,sha256=G7QmOXZRH42cfd_XSHakk2uEcQ1iJlpDV9GlIFb1FfY,12868
61
61
  deeporigin_data/types/client_list_database_column_unique_values_v2_params.py,sha256=_ENSP8YCgkdEYy4UjN_g230CuqXmYN7o1b7v3o0FEOY,506
62
62
  deeporigin_data/types/client_list_database_rows_params.py,sha256=aVDUuF1Ny-ZeAR_EF91d_l4vMTHEALXoNfEPO77zRCQ,3615
63
63
  deeporigin_data/types/client_list_files_params.py,sha256=DTtBgRGrbTLs7Ekp3sk2sDxpercjKG7lGcUytKYC14Q,692
@@ -106,8 +106,8 @@ deeporigin_data/types/update_database_column_response.py,sha256=UDOt1wNkOgpbTs81
106
106
  deeporigin_data/types/update_database_response.py,sha256=abtJ_GjAReuizXVNkXUMSwwm5uSCMylgsDlduNzCUtg,258
107
107
  deeporigin_data/types/update_workspace_response.py,sha256=jikZhBFlm8ycxP0z4op-ygHo_b0Dx7zKZV6eUJQ0icc,263
108
108
  deeporigin_data/types/shared/__init__.py,sha256=pYKaryHlFLkuhKqOrqy-7tuC-5jYgPHZ3McDCyPfFFc,567
109
- deeporigin_data/types/shared/add_column_base.py,sha256=aH4OMoIKcnb-dnChiuAD4YK-LH_aKHyV4iyJyKTwFgY,1108
110
- deeporigin_data/types/shared/add_column_union.py,sha256=TauJRWaa4YDjiTKux_GlBof8ymdU7CtqWU7RFJ9hqec,955
109
+ deeporigin_data/types/shared/add_column_base.py,sha256=U8cpfpPt0zbNbkVEwzU2ckw_XhXdNjQ3fcM12df621c,1184
110
+ deeporigin_data/types/shared/add_column_union.py,sha256=gVn9S3jFu670Cnr1TTpY_jedCmy3VZGfpNa1JTLTxHU,1031
111
111
  deeporigin_data/types/shared/condition.py,sha256=VnR-uM4UnpU_KiVyWfMW09HXg8C0SozqwzDQvMqPUIM,2843
112
112
  deeporigin_data/types/shared/database.py,sha256=uKiuaRKoa9a1L036pKLW0PPXltw1yLEVjXVEmvM_G58,1475
113
113
  deeporigin_data/types/shared/database_row.py,sha256=kcvB3dqJDIKKc5dPGZ0txF2yqo6QXAziJRRhoYHhdkM,20981
@@ -116,11 +116,11 @@ deeporigin_data/types/shared/file.py,sha256=ypKveZM0ya4jWyQUz83J8tpxaSWi2Aq6I_lN
116
116
  deeporigin_data/types/shared/row_filter_join.py,sha256=iGMX6qxnWnR3vmvGxCoACnbKWZSiQlgjTy3V1mvfg6A,673
117
117
  deeporigin_data/types/shared/workspace.py,sha256=hrViPgKOrIn5hs9D5vf_Pyl6wcIuhqW1iEzt_fKYqy8,1098
118
118
  deeporigin_data/types/shared_params/__init__.py,sha256=ng9sb1I2DfZ6VrWaVU0sUyR-GhVy1M33I_vWR-VUZkk,316
119
- deeporigin_data/types/shared_params/add_column_base.py,sha256=KfTFZFnCy08oqgSPAl8c96ZfeG4VMpPaKs4Pf1nITeA,1170
120
- deeporigin_data/types/shared_params/add_column_union.py,sha256=q4Ia_xvxdAF7RnKicd5QDs-WMKePG_PY-xnQ0SaJRmc,971
119
+ deeporigin_data/types/shared_params/add_column_base.py,sha256=s8cbOjluJmf4Pzmg_v_FzhON6Cgc6T82ZjLHmeEdJhY,1235
120
+ deeporigin_data/types/shared_params/add_column_union.py,sha256=uEJwB-xtbKY19Hq7a2vIrGdDfPcHIBwp9_R63Qf9KO0,1036
121
121
  deeporigin_data/types/shared_params/condition.py,sha256=ftu-hdGv05aTv4GL9bRyf4kQXl27kaPpt3P4KKdwmNM,2723
122
122
  deeporigin_data/types/shared_params/row_filter_join.py,sha256=QIo2yhjJJZLcGF-hBF7YcLcYHLhf5uq5EkQG-0WJjtU,595
123
- deeporigin_data_sdk-0.1.0a36.dist-info/METADATA,sha256=_SB2uUut9PupDzNoGiCyvktKtdKhor472g1WgEw9ZE4,13249
124
- deeporigin_data_sdk-0.1.0a36.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
125
- deeporigin_data_sdk-0.1.0a36.dist-info/licenses/LICENSE,sha256=qQA5hv0RJh5jpG5jw4cmr1gPxsNivnMjHFpEOTGWZyI,11345
126
- deeporigin_data_sdk-0.1.0a36.dist-info/RECORD,,
123
+ deeporigin_data_sdk-0.1.0a38.dist-info/METADATA,sha256=oFeOmqd-wxOimZrNhj0PXmVvErZDqbpup6Gyr62qWbI,13421
124
+ deeporigin_data_sdk-0.1.0a38.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
125
+ deeporigin_data_sdk-0.1.0a38.dist-info/licenses/LICENSE,sha256=qQA5hv0RJh5jpG5jw4cmr1gPxsNivnMjHFpEOTGWZyI,11345
126
+ deeporigin_data_sdk-0.1.0a38.dist-info/RECORD,,