lambdadb 0.3.6__py3-none-any.whl → 0.4.0__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.

Potentially problematic release.


This version of lambdadb might be problematic. Click here for more details.

@@ -48,21 +48,12 @@ class QueryCollectionRequestBody(BaseModel):
48
48
 
49
49
 
50
50
  class QueryCollectionRequestTypedDict(TypedDict):
51
- project_name: str
52
- r"""Project name."""
53
51
  collection_name: str
54
52
  r"""Collection name."""
55
53
  request_body: QueryCollectionRequestBodyTypedDict
56
54
 
57
55
 
58
56
  class QueryCollectionRequest(BaseModel):
59
- project_name: Annotated[
60
- str,
61
- pydantic.Field(alias="projectName"),
62
- FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
63
- ]
64
- r"""Project name."""
65
-
66
57
  collection_name: Annotated[
67
58
  str,
68
59
  pydantic.Field(alias="collectionName"),
@@ -21,21 +21,12 @@ class UpdateCollectionRequestBody(BaseModel):
21
21
 
22
22
 
23
23
  class UpdateCollectionRequestTypedDict(TypedDict):
24
- project_name: str
25
- r"""Project name."""
26
24
  collection_name: str
27
25
  r"""Collection name."""
28
26
  request_body: UpdateCollectionRequestBodyTypedDict
29
27
 
30
28
 
31
29
  class UpdateCollectionRequest(BaseModel):
32
- project_name: Annotated[
33
- str,
34
- pydantic.Field(alias="projectName"),
35
- FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
36
- ]
37
- r"""Project name."""
38
-
39
30
  collection_name: Annotated[
40
31
  str,
41
32
  pydantic.Field(alias="collectionName"),
@@ -19,21 +19,12 @@ class UpdateDocsRequestBody(BaseModel):
19
19
 
20
20
 
21
21
  class UpdateDocsRequestTypedDict(TypedDict):
22
- project_name: str
23
- r"""Project name."""
24
22
  collection_name: str
25
23
  r"""Collection name."""
26
24
  request_body: UpdateDocsRequestBodyTypedDict
27
25
 
28
26
 
29
27
  class UpdateDocsRequest(BaseModel):
30
- project_name: Annotated[
31
- str,
32
- pydantic.Field(alias="projectName"),
33
- FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
34
- ]
35
- r"""Project name."""
36
-
37
28
  collection_name: Annotated[
38
29
  str,
39
30
  pydantic.Field(alias="collectionName"),
@@ -19,21 +19,12 @@ class UpsertDocsRequestBody(BaseModel):
19
19
 
20
20
 
21
21
  class UpsertDocsRequestTypedDict(TypedDict):
22
- project_name: str
23
- r"""Project name."""
24
22
  collection_name: str
25
23
  r"""Collection name."""
26
24
  request_body: UpsertDocsRequestBodyTypedDict
27
25
 
28
26
 
29
27
  class UpsertDocsRequest(BaseModel):
30
- project_name: Annotated[
31
- str,
32
- pydantic.Field(alias="projectName"),
33
- FieldMetadata(path=PathParamMetadata(style="simple", explode=False)),
34
- ]
35
- r"""Project name."""
36
-
37
28
  collection_name: Annotated[
38
29
  str,
39
30
  pydantic.Field(alias="collectionName"),
lambdadb/sdk.py CHANGED
@@ -10,7 +10,7 @@ import importlib
10
10
  from lambdadb import models, utils
11
11
  from lambdadb._hooks import SDKHooks
12
12
  from lambdadb.types import OptionalNullable, UNSET
13
- from typing import Any, Callable, Dict, Optional, TYPE_CHECKING, Union, cast
13
+ from typing import Any, Callable, Dict, List, Optional, TYPE_CHECKING, Union, cast
14
14
  import weakref
15
15
 
16
16
  if TYPE_CHECKING:
@@ -30,6 +30,7 @@ class LambdaDB(BaseSDK):
30
30
  project_api_key: Optional[
31
31
  Union[Optional[str], Callable[[], Optional[str]]]
32
32
  ] = None,
33
+ base_url: Optional[str] = None,
33
34
  server_idx: Optional[int] = None,
34
35
  server_url: Optional[str] = None,
35
36
  url_params: Optional[Dict[str, str]] = None,
@@ -42,6 +43,7 @@ class LambdaDB(BaseSDK):
42
43
  r"""Instantiates the SDK configuring it with the provided parameters.
43
44
 
44
45
  :param project_api_key: The project_api_key required for authentication
46
+ :param base_url: Allows setting the baseUrl variable for url substitution
45
47
  :param server_idx: The index of the server to use for all methods
46
48
  :param server_url: The server URL to use for all methods
47
49
  :param url_params: Parameters to optionally template the server URL with
@@ -81,6 +83,11 @@ class LambdaDB(BaseSDK):
81
83
  if server_url is not None:
82
84
  if url_params is not None:
83
85
  server_url = utils.template_url(server_url, url_params)
86
+ server_defaults: List[Dict[str, str]] = [
87
+ {
88
+ "baseUrl": base_url or "api.lambdadb.com/projects/default",
89
+ },
90
+ ]
84
91
 
85
92
  BaseSDK.__init__(
86
93
  self,
@@ -92,6 +99,7 @@ class LambdaDB(BaseSDK):
92
99
  security=security,
93
100
  server_url=server_url,
94
101
  server_idx=server_idx,
102
+ server_defaults=server_defaults,
95
103
  retry_config=retry_config,
96
104
  timeout_ms=timeout_ms,
97
105
  debug_logger=debug_logger,
@@ -8,11 +8,11 @@ from ._version import (
8
8
  )
9
9
  from .httpclient import AsyncHttpClient, HttpClient
10
10
  from .utils import Logger, RetryConfig, remove_suffix
11
- from dataclasses import dataclass
11
+ from dataclasses import dataclass, field
12
12
  from lambdadb import models
13
13
  from lambdadb.types import OptionalNullable, UNSET
14
14
  from pydantic import Field
15
- from typing import Callable, Dict, Optional, Tuple, Union
15
+ from typing import Callable, Dict, List, Optional, Tuple, Union
16
16
 
17
17
 
18
18
  SERVERS = [
@@ -32,6 +32,7 @@ class SDKConfiguration:
32
32
  security: Optional[Union[models.Security, Callable[[], models.Security]]] = None
33
33
  server_url: Optional[str] = ""
34
34
  server_idx: Optional[int] = 0
35
+ server_defaults: List[Dict[str, str]] = field(default_factory=List)
35
36
  language: str = "python"
36
37
  openapi_doc_version: str = __openapi_doc_version__
37
38
  sdk_version: str = __version__
@@ -46,4 +47,4 @@ class SDKConfiguration:
46
47
  if self.server_idx is None:
47
48
  self.server_idx = 0
48
49
 
49
- return SERVERS[self.server_idx], {}
50
+ return SERVERS[self.server_idx], self.server_defaults[self.server_idx]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lambdadb
3
- Version: 0.3.6
3
+ Version: 0.4.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -135,7 +135,7 @@ with LambdaDB(
135
135
  project_api_key="<YOUR_PROJECT_API_KEY>",
136
136
  ) as lambda_db:
137
137
 
138
- res = lambda_db.collections.list(project_name="<value>")
138
+ res = lambda_db.collections.list_collections()
139
139
 
140
140
  # Handle response
141
141
  print(res)
@@ -155,7 +155,7 @@ async def main():
155
155
  project_api_key="<YOUR_PROJECT_API_KEY>",
156
156
  ) as lambda_db:
157
157
 
158
- res = await lambda_db.collections.list_async(project_name="<value>")
158
+ res = await lambda_db.collections.list_collections_async()
159
159
 
160
160
  # Handle response
161
161
  print(res)
@@ -184,7 +184,7 @@ with LambdaDB(
184
184
  project_api_key="<YOUR_PROJECT_API_KEY>",
185
185
  ) as lambda_db:
186
186
 
187
- res = lambda_db.collections.list(project_name="<value>")
187
+ res = lambda_db.collections.list_collections()
188
188
 
189
189
  # Handle response
190
190
  print(res)
@@ -200,21 +200,21 @@ with LambdaDB(
200
200
 
201
201
  ### [collections](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md)
202
202
 
203
- * [list](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#list) - List all collections in an existing project.
204
- * [create](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#create) - Create a collection.
205
- * [delete](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#delete) - Delete an existing collection.
206
- * [get](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#get) - Get metadata of an existing collection.
207
- * [update](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#update) - Configure a collection.
208
- * [query](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#query) - Search a collection with a query and return the most similar documents.
203
+ * [list_collections](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#list_collections) - List all collections in an existing project.
204
+ * [create_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#create_collection) - Create a collection.
205
+ * [delete_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#delete_collection) - Delete an existing collection.
206
+ * [get_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#get_collection) - Get metadata of an existing collection.
207
+ * [update_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#update_collection) - Configure a collection.
208
+ * [query_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#query_collection) - Search a collection with a query and return the most similar documents.
209
209
 
210
210
  #### [collections.docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md)
211
211
 
212
- * [upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#upsert) - Upsert documents into a collection. Note that the maximum supported payload size is 6MB.
213
- * [get_bulk_upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#get_bulk_upsert) - Request required info to upload documents.
214
- * [bulk_upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#bulk_upsert) - Bulk upsert documents into a collection. Note that the maximum supported object size is 200MB.
212
+ * [upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#upsert_docs) - Upsert documents into a collection. Note that the maximum supported payload size is 6MB.
213
+ * [get_bulk_upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#get_bulk_upsert_docs) - Request required info to upload documents.
214
+ * [bulk_upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#bulk_upsert_docs) - Bulk upsert documents into a collection. Note that the maximum supported object size is 200MB.
215
215
  * [update_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#update_docs) - Update documents in a collection. Note that the maximum supported payload size is 6MB.
216
- * [delete](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#delete) - Delete documents by document IDs or query filter from a collection.
217
- * [fetch](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#fetch) - Lookup and return documents by document IDs from a collection.
216
+ * [delete_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#delete_docs) - Delete documents by document IDs or query filter from a collection.
217
+ * [fetch_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#fetch_docs) - Lookup and return documents by document IDs from a collection.
218
218
 
219
219
 
220
220
  </details>
@@ -235,7 +235,7 @@ with LambdaDB(
235
235
  project_api_key="<YOUR_PROJECT_API_KEY>",
236
236
  ) as lambda_db:
237
237
 
238
- res = lambda_db.collections.list(project_name="<value>",
238
+ res = lambda_db.collections.list_collections(,
239
239
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
240
240
 
241
241
  # Handle response
@@ -254,7 +254,7 @@ with LambdaDB(
254
254
  project_api_key="<YOUR_PROJECT_API_KEY>",
255
255
  ) as lambda_db:
256
256
 
257
- res = lambda_db.collections.list(project_name="<value>")
257
+ res = lambda_db.collections.list_collections()
258
258
 
259
259
  # Handle response
260
260
  print(res)
@@ -287,7 +287,7 @@ with LambdaDB(
287
287
  res = None
288
288
  try:
289
289
 
290
- res = lambda_db.collections.list(project_name="<value>")
290
+ res = lambda_db.collections.list_collections()
291
291
 
292
292
  # Handle response
293
293
  print(res)
@@ -337,6 +337,32 @@ with LambdaDB(
337
337
  <!-- Start Server Selection [server] -->
338
338
  ## Server Selection
339
339
 
340
+ ### Server Variables
341
+
342
+ The default server `https://{baseUrl}` contains variables and is set to `https://api.lambdadb.com/projects/default` by default. To override default values, the following parameters are available when initializing the SDK client instance:
343
+
344
+ | Variable | Parameter | Default | Description |
345
+ | --------- | --------------- | ------------------------------------- | ----------------------- |
346
+ | `baseUrl` | `base_url: str` | `"api.lambdadb.com/projects/default"` | The base URL of the API |
347
+
348
+ #### Example
349
+
350
+ ```python
351
+ from lambdadb import LambdaDB
352
+
353
+
354
+ with LambdaDB(
355
+ base_url="https://functional-jury.net/"
356
+ project_api_key="<YOUR_PROJECT_API_KEY>",
357
+ ) as lambda_db:
358
+
359
+ res = lambda_db.collections.list_collections()
360
+
361
+ # Handle response
362
+ print(res)
363
+
364
+ ```
365
+
340
366
  ### Override Server URL Per-Client
341
367
 
342
368
  The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
@@ -345,11 +371,11 @@ from lambdadb import LambdaDB
345
371
 
346
372
 
347
373
  with LambdaDB(
348
- server_url="https://{baseUrl}",
374
+ server_url="https://api.lambdadb.com/projects/default",
349
375
  project_api_key="<YOUR_PROJECT_API_KEY>",
350
376
  ) as lambda_db:
351
377
 
352
- res = lambda_db.collections.list(project_name="<value>")
378
+ res = lambda_db.collections.list_collections()
353
379
 
354
380
  # Handle response
355
381
  print(res)
@@ -3,10 +3,10 @@ lambdadb/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,1
3
3
  lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  lambdadb/_hooks/sdkhooks.py,sha256=KGhPvIuUjurDBQOT6t-aWgiu1YDRXpn-OMz6_PkUdFk,2463
5
5
  lambdadb/_hooks/types.py,sha256=09dUW5q4HN9aVFAhskDLQqjxLPBfDD97uuucmdcBa6Q,2987
6
- lambdadb/_version.py,sha256=hEqkhi_r43UUrFatU2fOhQMkFz0vavozAHPDcH_8dlI,458
6
+ lambdadb/_version.py,sha256=CycIF9mTagyzhpxwmnBfhFMcyWprDvIzUDwq1OlGvco,458
7
7
  lambdadb/basesdk.py,sha256=wu3Ri2Po6LxhBngXYkD4-Grlxa0DX9I18cPH2vme-uI,11887
8
- lambdadb/collections.py,sha256=bc30Eq_PAJ9uuigEoXhcdUBlnSmmxRAeBNpqZSWBEpA,64975
9
- lambdadb/docs.py,sha256=ACGOOteLtbXbR1hW5HzbhTs487P6prshFBwvx42y4P8,64677
8
+ lambdadb/collections.py,sha256=R5ZVyDWLcalEVDcAn0Kur6fdFu-uBe22eCgpRME6Xf4,63021
9
+ lambdadb/docs.py,sha256=E_anmIJ5n2jptXA5-kX67EfO7tVVKMOqOrjjzhr27_I,63143
10
10
  lambdadb/errors/__init__.py,sha256=9_lvXJNi04FsujmLRi4BbOUtWA0L2ob2BJRBnXT5Kpg,3016
11
11
  lambdadb/errors/apierror.py,sha256=OBYy3l8_qBC4OXKwl_OwY5ko4klJvjd0j9bqy1C_VZo,1224
12
12
  lambdadb/errors/badrequest_error.py,sha256=0n_4BpubMGSKYHyJuvZnXGYRbDKs9G0QN6sm6xZLDeI,693
@@ -19,27 +19,27 @@ lambdadb/errors/responsevalidationerror.py,sha256=o_l_D3Z_Npl_BDprawTNU3df7xdoRE
19
19
  lambdadb/errors/toomanyrequests_error.py,sha256=yLIb-NT2tf7qJglHxleMUDNGnGSP2-_3CGzqiXIHtLE,713
20
20
  lambdadb/errors/unauthenticated_error.py,sha256=Ha7K1fbnx53nTxy8hRr1BW1qOEbtsJa3RjJWR9rPhsM,713
21
21
  lambdadb/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
22
- lambdadb/models/__init__.py,sha256=2omt5SgoTlRQyQEB85qp4w0BBTPJaNQP_gA0PdsnBV8,10853
23
- lambdadb/models/bulkupsertdocsop.py,sha256=wjADqZrC71TNmyGUWhuQ5ZVibZc4dL9SACLdWHumToo,1390
22
+ lambdadb/models/__init__.py,sha256=lkwWTHnJ-bFKtuR3aoL42LJravPne35jz3UtdE6hKUs,10311
23
+ lambdadb/models/bulkupsertdocsop.py,sha256=r_ExX7BFfF8oRfbeXWdX-DhSAry8ObvedvVE3z-Ky8I,1146
24
24
  lambdadb/models/collectionresponse.py,sha256=ZIF-GLeOV8RS-7MBSXGQuOjzOqeqCoTV_a5cndfnpug,1943
25
- lambdadb/models/createcollectionop.py,sha256=KoQlGTr3eYr8GINmlslL8DDf5dCY97hliVuevtD_Fr8,2518
26
- lambdadb/models/deletecollectionop.py,sha256=fy4Y0dGAB8AJbGxryKnE6xOCj_QTi9R4SzkcYwY74WY,871
27
- lambdadb/models/deletedocsop.py,sha256=IjCVQO6IH3w_RyVe24vpuwZ2fTfKVEUxrQfNkyTtL1o,1540
28
- lambdadb/models/fetchdocsop.py,sha256=I73mh1eDC_1hOaDYuxP88HgHjMJqG3qdHjjCMsKotLA,3034
29
- lambdadb/models/getbulkupsertdocsop.py,sha256=S67W9IBoGXP8EVEGc6PfKkJgmOydzBhkzu6f6g2eGOU,2526
30
- lambdadb/models/getcollectionop.py,sha256=Ef5uUwNHfnzU8Ij_E_8j1s4qYDy36C7mXiQZ8LY8VME,1199
25
+ lambdadb/models/createcollectionop.py,sha256=vFAp8DuYCs23NDOt1z7kZHvFzgK5ioo86X2Q9c35e5M,1886
26
+ lambdadb/models/deletecollectionop.py,sha256=8EUqFp6WOz9oHFqJxP8mXKowjFl2ZRYvMPIbALaU9Yk,627
27
+ lambdadb/models/deletedocsop.py,sha256=ObFx3COKkdceW13G1damN_fT2_P6GSLjUXLFwqv1m6U,1296
28
+ lambdadb/models/fetchdocsop.py,sha256=mKJOvdQF7vELyqC_0TbiZz1TvKRTZ9ihPYtNDKY7UF4,2790
29
+ lambdadb/models/getbulkupsertdocsop.py,sha256=YtB3TyAHd1APvAVDb31edqRjQS3zVeZFobo7FJT4qd8,2282
30
+ lambdadb/models/getcollectionop.py,sha256=Zew8mrD3JILVgRhAaTNBqVGlV6MRMyifsn4NXGOtl_M,955
31
31
  lambdadb/models/indexconfigs_union.py,sha256=LW0afqNPHxSd7PVyhi9bWALLkofPpewIzWCH5hlghkI,2055
32
- lambdadb/models/listcollectionsop.py,sha256=pfBvxfnsFwgsxPUg0Dkl1WeMOcsjvdOTcfx1iPUktEM,1028
32
+ lambdadb/models/listcollectionsop.py,sha256=2A7FEUqenNAGTvf_uROGTuKGsx0Ilgmx9bKcgYG81as,603
33
33
  lambdadb/models/messageresponse.py,sha256=0QI5LuyZVLh0Z6Jytwlo2ebAZ6x1bw5TVe7zvzQCEnM,300
34
- lambdadb/models/querycollectionop.py,sha256=UBhzSLT5PNJYCAmkITbh-II0nLZJkR1NzEWhv_JtgVE,3984
34
+ lambdadb/models/querycollectionop.py,sha256=K_pR4Kja-nDLul5WC9tezelldCduIcoHyoj9zJYa0qw,3740
35
35
  lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
36
36
  lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
37
- lambdadb/models/updatecollectionop.py,sha256=oj-BlL3i-o_9WETep10kOQfAIEfO73FgJ2XR4QT_5JI,1790
38
- lambdadb/models/updatedocsop.py,sha256=u2YYXaJlEp9M-eu3vue6YTun-Vs8yDHn_NNZgKlTIvQ,1451
39
- lambdadb/models/upsertdocsop.py,sha256=LjR_BbUgOwfPffpZ3N_MK0U60CL4izQl85zOWbHfNSM,1345
37
+ lambdadb/models/updatecollectionop.py,sha256=MIy5LNAFX_DkHdnG8g7OmvdUCLSv2tckmM6MvhjMLMk,1546
38
+ lambdadb/models/updatedocsop.py,sha256=HwtHdJBHQc8WphlqD_pLwQsI2kcC4z1mRQ-u0EoxiZE,1207
39
+ lambdadb/models/upsertdocsop.py,sha256=8eOyS_VRJd0xiNipfCPItuqM2VvvgD4USwRra-tvCz4,1101
40
40
  lambdadb/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
41
- lambdadb/sdk.py,sha256=r_MR7eLbat4LunLaRLw3GdkxXubZ6hEn0kegigYJ3vk,6097
42
- lambdadb/sdkconfiguration.py,sha256=-sHtaoBluBcNOYRTKxLMnovJazRm3ZWV9VOYCSS0UNY,1589
41
+ lambdadb/sdk.py,sha256=mF4FcqplI2G1J9VKQtzkchgQ4Qig8G8WJjlM-7-fY-w,6439
42
+ lambdadb/sdkconfiguration.py,sha256=BuZQUiM98WTxejG3Pf3bRXwZhxeeEyt6cSTlP4JLxvU,1709
43
43
  lambdadb/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
44
44
  lambdadb/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
45
45
  lambdadb/utils/__init__.py,sha256=7PZhKrdGnbPpXnPNaJR8C8QXpKC-mkyaJA_zglZUDLc,5547
@@ -58,7 +58,7 @@ lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,60
58
58
  lambdadb/utils/serializers.py,sha256=MMoIZJlmaQleupttusWZC6JUi-sRJEpEMGmdBpnRo4Y,6432
59
59
  lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
60
60
  lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
61
- lambdadb-0.3.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
62
- lambdadb-0.3.6.dist-info/METADATA,sha256=7agoTL_4vw71fkDRNF_Hoha7TkdB8s4HLhSblcbANn4,20891
63
- lambdadb-0.3.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
64
- lambdadb-0.3.6.dist-info/RECORD,,
61
+ lambdadb-0.4.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
62
+ lambdadb-0.4.0.dist-info/METADATA,sha256=3RmXA6oI8aWk_B-ebWZw1eM21V90X1X_a7RLbnb6Rl8,21858
63
+ lambdadb-0.4.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
64
+ lambdadb-0.4.0.dist-info/RECORD,,