mixpeek 0.1.1__py3-none-any.whl → 0.1.2__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.
mixpeek/_version.py CHANGED
@@ -3,7 +3,7 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mixpeek"
6
- __version__: str = "0.1.1"
6
+ __version__: str = "0.1.2"
7
7
 
8
8
  try:
9
9
  if __package__ is not None:
@@ -272,12 +272,7 @@ from .logicaloperator_output import (
272
272
  from .logodetectsettings import LogoDetectSettings, LogoDetectSettingsTypedDict
273
273
  from .modality import Modality
274
274
  from .modeldetails import ModelDetails, ModelDetailsTypedDict
275
- from .namespaceresponse import (
276
- NamespaceResponse,
277
- NamespaceResponseTypedDict,
278
- PayloadIndexes,
279
- PayloadIndexesTypedDict,
280
- )
275
+ from .namespaceresponse import NamespaceResponse, NamespaceResponseTypedDict
281
276
  from .organizationmodel import (
282
277
  OrganizationModel,
283
278
  OrganizationModelMetadata,
@@ -657,8 +652,6 @@ __all__ = [
657
652
  "PayloadIndexConfigTypedDict",
658
653
  "PayloadIndexType",
659
654
  "PayloadIndexTypeTypedDict",
660
- "PayloadIndexes",
661
- "PayloadIndexesTypedDict",
662
655
  "PayloadSchemaType",
663
656
  "PercolateRequest",
664
657
  "PercolateRequestTypedDict",
@@ -3,23 +3,15 @@
3
3
  from __future__ import annotations
4
4
  from mixpeek.types import BaseModel, Nullable, UNSET_SENTINEL
5
5
  from pydantic import model_serializer
6
- from typing import List
6
+ from typing import Any, List
7
7
  from typing_extensions import TypedDict
8
8
 
9
9
 
10
- class PayloadIndexesTypedDict(TypedDict):
11
- pass
12
-
13
-
14
- class PayloadIndexes(BaseModel):
15
- pass
16
-
17
-
18
10
  class NamespaceResponseTypedDict(TypedDict):
19
11
  namespace_id: str
20
12
  namespace_name: str
21
13
  vector_indexes: List[str]
22
- payload_indexes: Nullable[PayloadIndexesTypedDict]
14
+ payload_indexes: Nullable[List[Any]]
23
15
 
24
16
 
25
17
  class NamespaceResponse(BaseModel):
@@ -29,7 +21,7 @@ class NamespaceResponse(BaseModel):
29
21
 
30
22
  vector_indexes: List[str]
31
23
 
32
- payload_indexes: Nullable[PayloadIndexes]
24
+ payload_indexes: Nullable[List[Any]]
33
25
 
34
26
  @model_serializer(mode="wrap")
35
27
  def serialize_model(self, handler):
@@ -24,9 +24,9 @@ class SDKConfiguration:
24
24
  server_idx: Optional[int] = 0
25
25
  language: str = "python"
26
26
  openapi_doc_version: str = "0.81"
27
- sdk_version: str = "0.1.1"
27
+ sdk_version: str = "0.1.2"
28
28
  gen_version: str = "2.483.1"
29
- user_agent: str = "speakeasy-sdk/python 0.1.1 2.483.1 0.81 mixpeek"
29
+ user_agent: str = "speakeasy-sdk/python 0.1.2 2.483.1 0.81 mixpeek"
30
30
  retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
31
31
  timeout_ms: Optional[int] = None
32
32
 
@@ -1,7 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mixpeek
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
+ Home-page: https://github.com/mixpeek/python-sdk.git
5
6
  Author: Speakeasy
6
7
  Requires-Python: >=3.8,<4.0
7
8
  Classifier: Programming Language :: Python :: 3
@@ -17,6 +18,7 @@ Requires-Dist: jsonpath-python (>=1.0.6,<2.0.0)
17
18
  Requires-Dist: pydantic (>=2.10.3,<2.11.0)
18
19
  Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
19
20
  Requires-Dist: typing-inspect (>=0.9.0,<0.10.0)
21
+ Project-URL: Repository, https://github.com/mixpeek/python-sdk.git
20
22
  Description-Content-Type: text/markdown
21
23
 
22
24
  # mixpeek
@@ -44,29 +46,25 @@ Mixpeek API: This is the Mixpeek API, providing access to various endpoints for
44
46
  <!-- Start Table of Contents [toc] -->
45
47
  ## Table of Contents
46
48
  <!-- $toc-max-depth=2 -->
47
- * [mixpeek](#mixpeek)
48
- * [SDK Installation](#sdk-installation)
49
- * [IDE Support](#ide-support)
50
- * [SDK Example Usage](#sdk-example-usage)
51
- * [Available Resources and Operations](#available-resources-and-operations)
52
- * [Retries](#retries)
53
- * [Error Handling](#error-handling)
54
- * [Server Selection](#server-selection)
55
- * [Custom HTTP Client](#custom-http-client)
56
- * [Debugging](#debugging)
57
- * [Development](#development)
58
- * [Maturity](#maturity)
59
- * [Contributions](#contributions)
49
+ * [mixpeek](https://github.com/mixpeek/python-sdk/blob/master/#mixpeek)
50
+ * [SDK Installation](https://github.com/mixpeek/python-sdk/blob/master/#sdk-installation)
51
+ * [IDE Support](https://github.com/mixpeek/python-sdk/blob/master/#ide-support)
52
+ * [SDK Example Usage](https://github.com/mixpeek/python-sdk/blob/master/#sdk-example-usage)
53
+ * [Available Resources and Operations](https://github.com/mixpeek/python-sdk/blob/master/#available-resources-and-operations)
54
+ * [Retries](https://github.com/mixpeek/python-sdk/blob/master/#retries)
55
+ * [Error Handling](https://github.com/mixpeek/python-sdk/blob/master/#error-handling)
56
+ * [Server Selection](https://github.com/mixpeek/python-sdk/blob/master/#server-selection)
57
+ * [Custom HTTP Client](https://github.com/mixpeek/python-sdk/blob/master/#custom-http-client)
58
+ * [Debugging](https://github.com/mixpeek/python-sdk/blob/master/#debugging)
59
+ * [Development](https://github.com/mixpeek/python-sdk/blob/master/#development)
60
+ * [Maturity](https://github.com/mixpeek/python-sdk/blob/master/#maturity)
61
+ * [Contributions](https://github.com/mixpeek/python-sdk/blob/master/#contributions)
60
62
 
61
63
  <!-- End Table of Contents [toc] -->
62
64
 
63
65
  <!-- Start SDK Installation [installation] -->
64
66
  ## SDK Installation
65
67
 
66
- > [!TIP]
67
- > To finish publishing your SDK to PyPI you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).
68
-
69
-
70
68
  The SDK can be installed with either *pip* or *poetry* package managers.
71
69
 
72
70
  ### PIP
@@ -74,7 +72,7 @@ The SDK can be installed with either *pip* or *poetry* package managers.
74
72
  *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
75
73
 
76
74
  ```bash
77
- pip install git+<UNSET>.git
75
+ pip install mixpeek
78
76
  ```
79
77
 
80
78
  ### Poetry
@@ -82,7 +80,7 @@ pip install git+<UNSET>.git
82
80
  *Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
83
81
 
84
82
  ```bash
85
- poetry add git+<UNSET>.git
83
+ poetry add mixpeek
86
84
  ```
87
85
  <!-- End SDK Installation [installation] -->
88
86
 
@@ -139,81 +137,81 @@ asyncio.run(main())
139
137
  <details open>
140
138
  <summary>Available methods</summary>
141
139
 
142
- ### [assets](docs/sdks/assets/README.md)
140
+ ### [assets](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md)
143
141
 
144
- * [get](docs/sdks/assets/README.md#get) - Get Asset
145
- * [delete](docs/sdks/assets/README.md#delete) - Delete Asset
146
- * [update](docs/sdks/assets/README.md#update) - Full Asset Update
147
- * [partial_update](docs/sdks/assets/README.md#partial_update) - Partial Asset Update
148
- * [get_features](docs/sdks/assets/README.md#get_features) - Get Asset With Features
149
- * [list](docs/sdks/assets/README.md#list) - List Assets
150
- * [search](docs/sdks/assets/README.md#search) - Search Assets
142
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get) - Get Asset
143
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#delete) - Delete Asset
144
+ * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#update) - Full Asset Update
145
+ * [partial_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#partial_update) - Partial Asset Update
146
+ * [get_features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#get_features) - Get Asset With Features
147
+ * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#list) - List Assets
148
+ * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/assets/README.md#search) - Search Assets
151
149
 
152
- ### [collections](docs/sdks/collections/README.md)
150
+ ### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
153
151
 
154
- * [list](docs/sdks/collections/README.md#list) - List Collections
155
- * [create](docs/sdks/collections/README.md#create) - Create Collection
156
- * [delete](docs/sdks/collections/README.md#delete) - Delete Collection
157
- * [update](docs/sdks/collections/README.md#update) - Update Collection
158
- * [get](docs/sdks/collections/README.md#get) - Get Collection
152
+ * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#list) - List Collections
153
+ * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
154
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
155
+ * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
156
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection
159
157
 
160
- ### [feature_extractors](docs/sdks/featureextractors/README.md)
158
+ ### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
161
159
 
162
- * [extract_embeddings](docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
160
+ * [extract_embeddings](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md#extract_embeddings) - Extract Embeddings
163
161
 
164
- ### [features](docs/sdks/features/README.md)
162
+ ### [features](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md)
165
163
 
166
- * [get](docs/sdks/features/README.md#get) - Get Feature
167
- * [delete](docs/sdks/features/README.md#delete) - Delete Feature
168
- * [update](docs/sdks/features/README.md#update) - Full Feature Update
169
- * [list](docs/sdks/features/README.md#list) - List Features
170
- * [search](docs/sdks/features/README.md#search) - Search Features
164
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#get) - Get Feature
165
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#delete) - Delete Feature
166
+ * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#update) - Full Feature Update
167
+ * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#list) - List Features
168
+ * [search](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/features/README.md#search) - Search Features
171
169
 
172
- ### [health](docs/sdks/health/README.md)
170
+ ### [health](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md)
173
171
 
174
- * [check](docs/sdks/health/README.md#check) - Healthcheck
172
+ * [check](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/health/README.md#check) - Healthcheck
175
173
 
176
- ### [ingest](docs/sdks/ingest/README.md)
174
+ ### [ingest](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md)
177
175
 
178
- * [text](docs/sdks/ingest/README.md#text) - Ingest Text
179
- * [video_from_url](docs/sdks/ingest/README.md#video_from_url) - Ingest Video Url
180
- * [image_url](docs/sdks/ingest/README.md#image_url) - Ingest Image Url
176
+ * [text](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#text) - Ingest Text
177
+ * [video_from_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#video_from_url) - Ingest Video Url
178
+ * [image_url](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/ingest/README.md#image_url) - Ingest Image Url
181
179
 
182
- ### [interactions](docs/sdks/interactions/README.md)
180
+ ### [interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md)
183
181
 
184
- * [list](docs/sdks/interactions/README.md#list) - List Interactions
182
+ * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/interactions/README.md#list) - List Interactions
185
183
 
186
184
 
187
- ### [namespaces](docs/sdks/namespaces/README.md)
185
+ ### [namespaces](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md)
188
186
 
189
- * [create](docs/sdks/namespaces/README.md#create) - Create Namespace
190
- * [list](docs/sdks/namespaces/README.md#list) - List Namespaces
191
- * [delete](docs/sdks/namespaces/README.md#delete) - Delete Namespace
192
- * [update](docs/sdks/namespaces/README.md#update) - Update Namespace
193
- * [get](docs/sdks/namespaces/README.md#get) - Get Namespace
194
- * [list_indexes](docs/sdks/namespaces/README.md#list_indexes) - List Available Indexes
187
+ * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#create) - Create Namespace
188
+ * [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list) - List Namespaces
189
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#delete) - Delete Namespace
190
+ * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#update) - Update Namespace
191
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#get) - Get Namespace
192
+ * [list_indexes](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/namespaces/README.md#list_indexes) - List Available Indexes
195
193
 
196
- ### [organizations](docs/sdks/organizations/README.md)
194
+ ### [organizations](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md)
197
195
 
198
- * [get](docs/sdks/organizations/README.md#get) - Get Organization
199
- * [get_usage](docs/sdks/organizations/README.md#get_usage) - Get Usage
200
- * [get_user](docs/sdks/organizations/README.md#get_user) - Get User
201
- * [delete_user](docs/sdks/organizations/README.md#delete_user) - Delete User
202
- * [add_user](docs/sdks/organizations/README.md#add_user) - Add User
203
- * [create_api_key](docs/sdks/organizations/README.md#create_api_key) - Create Api Key
204
- * [delete_api_key](docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
205
- * [update_api_key](docs/sdks/organizations/README.md#update_api_key) - Update Api Key
196
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get) - Get Organization
197
+ * [get_usage](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_usage) - Get Usage
198
+ * [get_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#get_user) - Get User
199
+ * [delete_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_user) - Delete User
200
+ * [add_user](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#add_user) - Add User
201
+ * [create_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#create_api_key) - Create Api Key
202
+ * [delete_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#delete_api_key) - Delete Api Key
203
+ * [update_api_key](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/organizations/README.md#update_api_key) - Update Api Key
206
204
 
207
- ### [search_interactions](docs/sdks/searchinteractions/README.md)
205
+ ### [search_interactions](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md)
208
206
 
209
- * [create](docs/sdks/searchinteractions/README.md#create) - Create Interaction
210
- * [get_interaction](docs/sdks/searchinteractions/README.md#get_interaction) - Get Interaction
211
- * [delete](docs/sdks/searchinteractions/README.md#delete) - Delete Interaction
207
+ * [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#create) - Create Interaction
208
+ * [get_interaction](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#get_interaction) - Get Interaction
209
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/searchinteractions/README.md#delete) - Delete Interaction
212
210
 
213
- ### [tasks](docs/sdks/tasks/README.md)
211
+ ### [tasks](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md)
214
212
 
215
- * [delete](docs/sdks/tasks/README.md#delete) - Kill Task
216
- * [get](docs/sdks/tasks/README.md#get) - Get Task Information
213
+ * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#delete) - Kill Task
214
+ * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/tasks/README.md#get) - Get Task Information
217
215
 
218
216
  </details>
219
217
  <!-- End Available Resources and Operations [operations] -->
@@ -4,7 +4,7 @@ mixpeek/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,14
4
4
  mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
5
5
  mixpeek/_hooks/sdkhooks.py,sha256=NMqSNr_PmeJuQgXFEntPJElH9a6yfdyvwEQFH0TrunI,2557
6
6
  mixpeek/_hooks/types.py,sha256=Qh9pO5ndynMrWpMLPkJUsOmAJ1AJHntJAXb5Yxe_a4o,2568
7
- mixpeek/_version.py,sha256=f7MXS4bTgN6zyX1r0pXLT_b_21854YayLb6rOYMuo3w,311
7
+ mixpeek/_version.py,sha256=3NyYd4y_1hUPSGgvqXzs-1kTk9gSSI-mgdrTEHZHy3g,311
8
8
  mixpeek/assets.py,sha256=ESum0B7UhOxipq8iJLNISzSawGevs1MPAqQpIMFThG4,66550
9
9
  mixpeek/basesdk.py,sha256=yjFc0kFcaUG17DbNzzryB9oOyjpuuMt3vzSdtc3L0qg,11896
10
10
  mixpeek/collections.py,sha256=3Pd1CsPY03Zb91mwXwLmAI3i_iqT-eqICGDTdifOHjs,42727
@@ -14,7 +14,7 @@ mixpeek/health.py,sha256=Njg0ESgrQPk4n9CFQy-4ds2xqHaXYjG1K3XmRBbh6BE,6519
14
14
  mixpeek/httpclient.py,sha256=WDbLpMzo7qmWki_ryOJcCAYNI1T4uyWKV08rRuCdNII,2688
15
15
  mixpeek/ingest.py,sha256=VubgOL0ebjeAB-8WutiBLBKVkrFAXHbDQ9xwmaGJeks,38592
16
16
  mixpeek/interactions.py,sha256=p8wBdRCU0-fkVw7gTJHmx8MmDk_Z4xxh2HIHjoWeUeE,9097
17
- mixpeek/models/__init__.py,sha256=Myf_zy-cNYr3RUBN4WTiqXTeRPFPqqbDwOEj0zF7MH4,27743
17
+ mixpeek/models/__init__.py,sha256=iyzCKB7JLP4pzCkwvGY7gr3PTFaNoXOc4NXjZOW8x3w,27628
18
18
  mixpeek/models/actionusage.py,sha256=WAnnBVTeQ9j0dtIrubfyyJQwbBamxManfS8fc2OFNyo,324
19
19
  mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
20
20
  mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
@@ -102,7 +102,7 @@ mixpeek/models/logicaloperator_output.py,sha256=wJLJshx5N0brYqFmsHknK1pIlVkILUDZ
102
102
  mixpeek/models/logodetectsettings.py,sha256=f_xvsILMrlbhS4raufxc7iNaONqEvWWTj7_OOIr4BTM,1706
103
103
  mixpeek/models/modality.py,sha256=qITDsYEVP7vf1PiekTD6F0cRGn8HZaoHhPmn-C8ksmQ,291
104
104
  mixpeek/models/modeldetails.py,sha256=bKbvqkQPBiGqvCJFQFpozjept0gpNe-Pz0y8xjhzia8,1593
105
- mixpeek/models/namespaceresponse.py,sha256=GntWDfJOSHNM1u6sIV9CeQQBlOCCwEOzdCWI7Cupft4,1613
105
+ mixpeek/models/namespaceresponse.py,sha256=w9ndVRODVaXkRdGPpAwEzH61PDCl5taRpoy0frtTlTU,1502
106
106
  mixpeek/models/organizationmodel.py,sha256=nkTGqZdVoNiwy-OIWbgRZpkxOnwjvtG29r8Y3NaIDco,1204
107
107
  mixpeek/models/partial_asset_update_assets_asset_id_patchop.py,sha256=vx2sEynihGrgDI2iUmotaZ1Gik98LR7dOBrp6ZqEbek,2517
108
108
  mixpeek/models/payloadindexconfig.py,sha256=ik0jF70xJaA4K1PcQbt9gzxPu1FW_K0OUkta4SUugK0,2932
@@ -151,7 +151,7 @@ mixpeek/namespaces.py,sha256=mEPPJ_TX8jVs3ZcqqcP5tKS44WX7IsVDU_9mQ_uJilo,46258
151
151
  mixpeek/organizations.py,sha256=cekjjBZmmzt7sIOKBkZB_m2csxulRnFktaRNQZIJo60,59873
152
152
  mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
153
153
  mixpeek/sdk.py,sha256=hPCpxWo0Ss9ITkgBSQrKFD-Qy4J79udWlg_FYFRBMZ0,5126
154
- mixpeek/sdkconfiguration.py,sha256=GD0Eg9U4ulQswb2AbGU1mOac9isIuI2EEGvQz7EE9hg,1404
154
+ mixpeek/sdkconfiguration.py,sha256=E0xWn4LLXPHEZu8DSfglzjWQX-foFikaq_3959cCU6s,1404
155
155
  mixpeek/searchinteractions.py,sha256=RFI5z33-j5DhnDYCbglwWf6iCNdJFZeVHCU4ovGphBU,27150
156
156
  mixpeek/tasks.py,sha256=-NQFb54_imSLqj-GKVkOTPQOPokt_HbnPVgUrkVQO6g,15848
157
157
  mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
@@ -171,6 +171,6 @@ mixpeek/utils/security.py,sha256=ktep3HKwbFs-MLxUYTM8Jd4v-ZBum5_Z0u1PFIdYBX0,551
171
171
  mixpeek/utils/serializers.py,sha256=BSJT7kBOkNBFyP7KREyMoe14JGbgijD1M6AXFMbdmco,4924
172
172
  mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
173
173
  mixpeek/utils/values.py,sha256=_89YXPTI_BU6SXJBzFR4pIzTCBPQW9tsOTN1jeBBIDs,3428
174
- mixpeek-0.1.1.dist-info/METADATA,sha256=GV0HPvwaPjigi3aO24Op8FfNGTvUnhP_dPT7ci83UOY,15989
175
- mixpeek-0.1.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
176
- mixpeek-0.1.1.dist-info/RECORD,,
174
+ mixpeek-0.1.2.dist-info/METADATA,sha256=6CdvGD3T3u9WBDULNAGEifNpD6nJsG42LE2pNBV4FGk,19233
175
+ mixpeek-0.1.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
176
+ mixpeek-0.1.2.dist-info/RECORD,,