deeporigin-data-sdk 0.1.0a37__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.
- deeporigin_data/_version.py +1 -1
- deeporigin_data/types/client_add_database_column_params.py +22 -0
- deeporigin_data/types/client_import_rows_params.py +22 -0
- deeporigin_data/types/shared/add_column_base.py +2 -0
- deeporigin_data/types/shared/add_column_union.py +2 -0
- deeporigin_data/types/shared_params/add_column_base.py +2 -0
- deeporigin_data/types/shared_params/add_column_union.py +2 -0
- {deeporigin_data_sdk-0.1.0a37.dist-info → deeporigin_data_sdk-0.1.0a38.dist-info}/METADATA +1 -1
- {deeporigin_data_sdk-0.1.0a37.dist-info → deeporigin_data_sdk-0.1.0a38.dist-info}/RECORD +11 -11
- {deeporigin_data_sdk-0.1.0a37.dist-info → deeporigin_data_sdk-0.1.0a38.dist-info}/WHEEL +0 -0
- {deeporigin_data_sdk-0.1.0a37.dist-info → deeporigin_data_sdk-0.1.0a38.dist-info}/licenses/LICENSE +0 -0
deeporigin_data/_version.py
CHANGED
@@ -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.
|
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
|
@@ -11,7 +11,7 @@ deeporigin_data/_resource.py,sha256=tkm4gF9YRotE93j48jTDBSGs8wyVa0E5NS9fj19e38c,
|
|
11
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
|
14
|
+
deeporigin_data/_version.py,sha256=WhUww5tVXJ_iehHwoUYUHzaRgYLqpl9waB_wzMW4-40,176
|
15
15
|
deeporigin_data/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
deeporigin_data/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
17
17
|
deeporigin_data/_utils/_logs.py,sha256=R7dnUaDs2cdYbq1Ee16dHy863wdcTZRRzubw9KE0qNc,801
|
@@ -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=
|
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=
|
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=
|
110
|
-
deeporigin_data/types/shared/add_column_union.py,sha256=
|
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=
|
120
|
-
deeporigin_data/types/shared_params/add_column_union.py,sha256=
|
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.
|
124
|
-
deeporigin_data_sdk-0.1.
|
125
|
-
deeporigin_data_sdk-0.1.
|
126
|
-
deeporigin_data_sdk-0.1.
|
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,,
|
File without changes
|
{deeporigin_data_sdk-0.1.0a37.dist-info → deeporigin_data_sdk-0.1.0a38.dist-info}/licenses/LICENSE
RENAMED
File without changes
|