nimble_python 0.14.0__py3-none-any.whl → 0.15.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.
nimble_python/_qs.py CHANGED
@@ -101,7 +101,10 @@ class Querystring:
101
101
  items.extend(self._stringify_item(key, item, opts))
102
102
  return items
103
103
  elif array_format == "indices":
104
- raise NotImplementedError("The array indices format is not supported yet")
104
+ items = []
105
+ for i, item in enumerate(value):
106
+ items.extend(self._stringify_item(f"{key}[{i}]", item, opts))
107
+ return items
105
108
  elif array_format == "brackets":
106
109
  items = []
107
110
  key = key + "[]"
nimble_python/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "nimble_python"
4
- __version__ = "0.14.0" # x-release-please-version
4
+ __version__ = "0.15.0" # x-release-please-version
@@ -2,12 +2,12 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, Optional
5
+ from typing import Dict, List, Iterable, Optional
6
6
  from typing_extensions import Literal
7
7
 
8
8
  import httpx
9
9
 
10
- from ..types import agent_run_params, agent_list_params, agent_run_async_params
10
+ from ..types import agent_run_params, agent_list_params, agent_run_async_params, agent_run_batch_params
11
11
  from .._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
12
12
  from .._utils import path_template, maybe_transform, async_maybe_transform
13
13
  from .._compat import cached_property
@@ -23,6 +23,7 @@ from ..types.agent_get_response import AgentGetResponse
23
23
  from ..types.agent_run_response import AgentRunResponse
24
24
  from ..types.agent_list_response import AgentListResponse
25
25
  from ..types.agent_run_async_response import AgentRunAsyncResponse
26
+ from ..types.agent_run_batch_response import AgentRunBatchResponse
26
27
 
27
28
  __all__ = ["AgentResource", "AsyncAgentResource"]
28
29
 
@@ -143,6 +144,7 @@ class AgentResource(SyncAPIResource):
143
144
  *,
144
145
  agent: str,
145
146
  params: Dict[str, object],
147
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]] | Omit = omit,
146
148
  localization: bool | Omit = omit,
147
149
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
148
150
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -151,10 +153,13 @@ class AgentResource(SyncAPIResource):
151
153
  extra_body: Body | None = None,
152
154
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
153
155
  ) -> AgentRunResponse:
154
- """
155
- Execute WSA Realtime Endpoint
156
+ """Execute WSA Realtime Endpoint
156
157
 
157
158
  Args:
159
+ formats: Response formats to include.
160
+
161
+ All disabled by default.
162
+
158
163
  extra_headers: Send extra headers
159
164
 
160
165
  extra_query: Add additional query parameters to the request
@@ -169,6 +174,7 @@ class AgentResource(SyncAPIResource):
169
174
  {
170
175
  "agent": agent,
171
176
  "params": params,
177
+ "formats": formats,
172
178
  "localization": localization,
173
179
  },
174
180
  agent_run_params.AgentRunParams,
@@ -185,6 +191,7 @@ class AgentResource(SyncAPIResource):
185
191
  agent: str,
186
192
  params: Dict[str, object],
187
193
  callback_url: str | Omit = omit,
194
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]] | Omit = omit,
188
195
  localization: bool | Omit = omit,
189
196
  storage_compress: bool | Omit = omit,
190
197
  storage_object_name: str | Omit = omit,
@@ -203,6 +210,8 @@ class AgentResource(SyncAPIResource):
203
210
  Args:
204
211
  callback_url: URL to call back when async operation completes
205
212
 
213
+ formats: Response formats to include. All disabled by default.
214
+
206
215
  storage_compress: Whether to compress stored data
207
216
 
208
217
  storage_object_name: Custom name for the stored object
@@ -226,6 +235,7 @@ class AgentResource(SyncAPIResource):
226
235
  "agent": agent,
227
236
  "params": params,
228
237
  "callback_url": callback_url,
238
+ "formats": formats,
229
239
  "localization": localization,
230
240
  "storage_compress": storage_compress,
231
241
  "storage_object_name": storage_object_name,
@@ -240,6 +250,45 @@ class AgentResource(SyncAPIResource):
240
250
  cast_to=AgentRunAsyncResponse,
241
251
  )
242
252
 
253
+ def run_batch(
254
+ self,
255
+ *,
256
+ inputs: Iterable[agent_run_batch_params.Input],
257
+ shared_inputs: agent_run_batch_params.SharedInputs,
258
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
259
+ # The extra values given here take precedence over values defined on the client or passed to this method.
260
+ extra_headers: Headers | None = None,
261
+ extra_query: Query | None = None,
262
+ extra_body: Body | None = None,
263
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
264
+ ) -> AgentRunBatchResponse:
265
+ """
266
+ Execute WSA Batch Endpoint
267
+
268
+ Args:
269
+ extra_headers: Send extra headers
270
+
271
+ extra_query: Add additional query parameters to the request
272
+
273
+ extra_body: Add additional JSON properties to the request
274
+
275
+ timeout: Override the client-level default timeout for this request, in seconds
276
+ """
277
+ return self._post(
278
+ "/v1/agents/batch",
279
+ body=maybe_transform(
280
+ {
281
+ "inputs": inputs,
282
+ "shared_inputs": shared_inputs,
283
+ },
284
+ agent_run_batch_params.AgentRunBatchParams,
285
+ ),
286
+ options=make_request_options(
287
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
288
+ ),
289
+ cast_to=AgentRunBatchResponse,
290
+ )
291
+
243
292
 
244
293
  class AsyncAgentResource(AsyncAPIResource):
245
294
  @cached_property
@@ -357,6 +406,7 @@ class AsyncAgentResource(AsyncAPIResource):
357
406
  *,
358
407
  agent: str,
359
408
  params: Dict[str, object],
409
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]] | Omit = omit,
360
410
  localization: bool | Omit = omit,
361
411
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
362
412
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -365,10 +415,13 @@ class AsyncAgentResource(AsyncAPIResource):
365
415
  extra_body: Body | None = None,
366
416
  timeout: float | httpx.Timeout | None | NotGiven = not_given,
367
417
  ) -> AgentRunResponse:
368
- """
369
- Execute WSA Realtime Endpoint
418
+ """Execute WSA Realtime Endpoint
370
419
 
371
420
  Args:
421
+ formats: Response formats to include.
422
+
423
+ All disabled by default.
424
+
372
425
  extra_headers: Send extra headers
373
426
 
374
427
  extra_query: Add additional query parameters to the request
@@ -383,6 +436,7 @@ class AsyncAgentResource(AsyncAPIResource):
383
436
  {
384
437
  "agent": agent,
385
438
  "params": params,
439
+ "formats": formats,
386
440
  "localization": localization,
387
441
  },
388
442
  agent_run_params.AgentRunParams,
@@ -399,6 +453,7 @@ class AsyncAgentResource(AsyncAPIResource):
399
453
  agent: str,
400
454
  params: Dict[str, object],
401
455
  callback_url: str | Omit = omit,
456
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]] | Omit = omit,
402
457
  localization: bool | Omit = omit,
403
458
  storage_compress: bool | Omit = omit,
404
459
  storage_object_name: str | Omit = omit,
@@ -417,6 +472,8 @@ class AsyncAgentResource(AsyncAPIResource):
417
472
  Args:
418
473
  callback_url: URL to call back when async operation completes
419
474
 
475
+ formats: Response formats to include. All disabled by default.
476
+
420
477
  storage_compress: Whether to compress stored data
421
478
 
422
479
  storage_object_name: Custom name for the stored object
@@ -440,6 +497,7 @@ class AsyncAgentResource(AsyncAPIResource):
440
497
  "agent": agent,
441
498
  "params": params,
442
499
  "callback_url": callback_url,
500
+ "formats": formats,
443
501
  "localization": localization,
444
502
  "storage_compress": storage_compress,
445
503
  "storage_object_name": storage_object_name,
@@ -454,6 +512,45 @@ class AsyncAgentResource(AsyncAPIResource):
454
512
  cast_to=AgentRunAsyncResponse,
455
513
  )
456
514
 
515
+ async def run_batch(
516
+ self,
517
+ *,
518
+ inputs: Iterable[agent_run_batch_params.Input],
519
+ shared_inputs: agent_run_batch_params.SharedInputs,
520
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
521
+ # The extra values given here take precedence over values defined on the client or passed to this method.
522
+ extra_headers: Headers | None = None,
523
+ extra_query: Query | None = None,
524
+ extra_body: Body | None = None,
525
+ timeout: float | httpx.Timeout | None | NotGiven = not_given,
526
+ ) -> AgentRunBatchResponse:
527
+ """
528
+ Execute WSA Batch Endpoint
529
+
530
+ Args:
531
+ extra_headers: Send extra headers
532
+
533
+ extra_query: Add additional query parameters to the request
534
+
535
+ extra_body: Add additional JSON properties to the request
536
+
537
+ timeout: Override the client-level default timeout for this request, in seconds
538
+ """
539
+ return await self._post(
540
+ "/v1/agents/batch",
541
+ body=await async_maybe_transform(
542
+ {
543
+ "inputs": inputs,
544
+ "shared_inputs": shared_inputs,
545
+ },
546
+ agent_run_batch_params.AgentRunBatchParams,
547
+ ),
548
+ options=make_request_options(
549
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
550
+ ),
551
+ cast_to=AgentRunBatchResponse,
552
+ )
553
+
457
554
 
458
555
  class AgentResourceWithRawResponse:
459
556
  def __init__(self, agent: AgentResource) -> None:
@@ -471,6 +568,9 @@ class AgentResourceWithRawResponse:
471
568
  self.run_async = to_raw_response_wrapper(
472
569
  agent.run_async,
473
570
  )
571
+ self.run_batch = to_raw_response_wrapper(
572
+ agent.run_batch,
573
+ )
474
574
 
475
575
 
476
576
  class AsyncAgentResourceWithRawResponse:
@@ -489,6 +589,9 @@ class AsyncAgentResourceWithRawResponse:
489
589
  self.run_async = async_to_raw_response_wrapper(
490
590
  agent.run_async,
491
591
  )
592
+ self.run_batch = async_to_raw_response_wrapper(
593
+ agent.run_batch,
594
+ )
492
595
 
493
596
 
494
597
  class AgentResourceWithStreamingResponse:
@@ -507,6 +610,9 @@ class AgentResourceWithStreamingResponse:
507
610
  self.run_async = to_streamed_response_wrapper(
508
611
  agent.run_async,
509
612
  )
613
+ self.run_batch = to_streamed_response_wrapper(
614
+ agent.run_batch,
615
+ )
510
616
 
511
617
 
512
618
  class AsyncAgentResourceWithStreamingResponse:
@@ -525,3 +631,6 @@ class AsyncAgentResourceWithStreamingResponse:
525
631
  self.run_async = async_to_streamed_response_wrapper(
526
632
  agent.run_async,
527
633
  )
634
+ self.run_batch = async_to_streamed_response_wrapper(
635
+ agent.run_batch,
636
+ )
@@ -39,10 +39,12 @@ from .client_extract_params import ClientExtractParams as ClientExtractParams
39
39
  from .crawl_status_response import CrawlStatusResponse as CrawlStatusResponse
40
40
  from .task_results_response import TaskResultsResponse as TaskResultsResponse
41
41
  from .agent_run_async_params import AgentRunAsyncParams as AgentRunAsyncParams
42
+ from .agent_run_batch_params import AgentRunBatchParams as AgentRunBatchParams
42
43
  from .extract_async_response import ExtractAsyncResponse as ExtractAsyncResponse
43
44
  from .extract_batch_response import ExtractBatchResponse as ExtractBatchResponse
44
45
  from .batch_progress_response import BatchProgressResponse as BatchProgressResponse
45
46
  from .agent_run_async_response import AgentRunAsyncResponse as AgentRunAsyncResponse
47
+ from .agent_run_batch_response import AgentRunBatchResponse as AgentRunBatchResponse
46
48
  from .crawl_terminate_response import CrawlTerminateResponse as CrawlTerminateResponse
47
49
  from .client_extract_async_params import ClientExtractAsyncParams as ClientExtractAsyncParams
48
50
  from .client_extract_batch_params import ClientExtractBatchParams as ClientExtractBatchParams
@@ -2,8 +2,8 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict
6
- from typing_extensions import Required, TypedDict
5
+ from typing import Dict, List
6
+ from typing_extensions import Literal, Required, TypedDict
7
7
 
8
8
  __all__ = ["AgentRunAsyncParams"]
9
9
 
@@ -16,6 +16,9 @@ class AgentRunAsyncParams(TypedDict, total=False):
16
16
  callback_url: str
17
17
  """URL to call back when async operation completes"""
18
18
 
19
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]]
20
+ """Response formats to include. All disabled by default."""
21
+
19
22
  localization: bool
20
23
 
21
24
  storage_compress: bool
@@ -0,0 +1,34 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict, List, Iterable
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ __all__ = ["AgentRunBatchParams", "Input", "SharedInputs"]
9
+
10
+
11
+ class AgentRunBatchParams(TypedDict, total=False):
12
+ inputs: Required[Iterable[Input]]
13
+
14
+ shared_inputs: Required[SharedInputs]
15
+
16
+
17
+ class Input(TypedDict, total=False):
18
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]]
19
+ """Response formats to include. All disabled by default."""
20
+
21
+ localization: bool
22
+
23
+ params: Dict[str, object]
24
+
25
+
26
+ class SharedInputs(TypedDict, total=False):
27
+ agent: Required[str]
28
+
29
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]]
30
+ """Response formats to include. All disabled by default."""
31
+
32
+ localization: bool
33
+
34
+ params: Dict[str, object]
@@ -0,0 +1,68 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+ from typing_extensions import Literal
5
+
6
+ from pydantic import Field as FieldInfo
7
+
8
+ from .._models import BaseModel
9
+
10
+ __all__ = ["AgentRunBatchResponse", "Task"]
11
+
12
+
13
+ class Task(BaseModel):
14
+ id: str
15
+ """Unique task identifier."""
16
+
17
+ api_query: object = FieldInfo(alias="_query")
18
+
19
+ created_at: str
20
+ """Timestamp when the task was created."""
21
+
22
+ input: object
23
+ """Original input data for the task."""
24
+
25
+ state: Literal["pending", "success", "error"]
26
+ """Current state of the task."""
27
+
28
+ status_url: str
29
+ """URL for checking the task status."""
30
+
31
+ account_name: Optional[str] = None
32
+ """Account name that owns the task."""
33
+
34
+ api_type: Optional[Literal["web", "serp", "ecommerce", "social", "media", "agent", "extract"]] = None
35
+
36
+ batch_id: Optional[str] = None
37
+ """Batch ID if this task is part of a batch."""
38
+
39
+ download_url: Optional[str] = None
40
+ """URL for downloading the task results."""
41
+
42
+ error: Optional[str] = None
43
+ """Error message if the task failed."""
44
+
45
+ error_type: Optional[str] = None
46
+ """Classification of the error type."""
47
+
48
+ modified_at: Optional[str] = None
49
+ """Timestamp when the task was last modified."""
50
+
51
+ output_url: Optional[str] = None
52
+ """Storage location of the output data."""
53
+
54
+ status_code: Optional[float] = None
55
+ """HTTP status code from the task execution."""
56
+
57
+
58
+ class AgentRunBatchResponse(BaseModel):
59
+ """Response when a batch of extract tasks is created successfully."""
60
+
61
+ batch_id: str
62
+ """Unique identifier for the batch."""
63
+
64
+ batch_size: float
65
+ """Number of tasks in the batch."""
66
+
67
+ tasks: List[Task]
68
+ """List of created tasks."""
@@ -2,8 +2,8 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict
6
- from typing_extensions import Required, TypedDict
5
+ from typing import Dict, List
6
+ from typing_extensions import Literal, Required, TypedDict
7
7
 
8
8
  __all__ = ["AgentRunParams"]
9
9
 
@@ -13,4 +13,7 @@ class AgentRunParams(TypedDict, total=False):
13
13
 
14
14
  params: Required[Dict[str, object]]
15
15
 
16
+ formats: List[Literal["html", "markdown", "screenshot", "headers"]]
17
+ """Response formats to include. All disabled by default."""
18
+
16
19
  localization: bool
@@ -246,6 +246,9 @@ class Data(BaseModel):
246
246
  network_capture: Optional[List[DataNetworkCapture]] = None
247
247
  """The network capture data collected during the task."""
248
248
 
249
+ pages_html: Optional[List[str]] = None
250
+ """Individual HTML content of each pagination page, before merging."""
251
+
249
252
  parsing: Optional[DataParsing] = None
250
253
  """The parsing results extracted from the HTML & network content."""
251
254
 
@@ -246,6 +246,9 @@ class Data(BaseModel):
246
246
  network_capture: Optional[List[DataNetworkCapture]] = None
247
247
  """The network capture data collected during the task."""
248
248
 
249
+ pages_html: Optional[List[str]] = None
250
+ """Individual HTML content of each pagination page, before merging."""
251
+
249
252
  parsing: Optional[DataParsing] = None
250
253
  """The parsing results extracted from the HTML & network content."""
251
254
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nimble_python
3
- Version: 0.14.0
3
+ Version: 0.15.0
4
4
  Summary: The official Python library for the nimble API
5
5
  Project-URL: Homepage, https://github.com/Nimbleway/nimble-python
6
6
  Project-URL: Repository, https://github.com/Nimbleway/nimble-python
@@ -6,12 +6,12 @@ nimble_python/_constants.py,sha256=giUwuSKDnpjRLaHvgzErnXB3CSYjKMaI5xnBQJI-23s,4
6
6
  nimble_python/_exceptions.py,sha256=x1M0s_wI9jkJ5ARR07APUuDZfxl7BjQ53snlFU-jAoQ,3220
7
7
  nimble_python/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
8
  nimble_python/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
- nimble_python/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
9
+ nimble_python/_qs.py,sha256=ExvESqZz_a5ZALZG1aR2rkzE35o9Rmk0yPMQtKN0DTo,4924
10
10
  nimble_python/_resource.py,sha256=TDtzjUMbNHRGQNq-4HJqce3T3THBD5Q7ESrONYPvKdI,1100
11
11
  nimble_python/_response.py,sha256=hrLOCn3D0gCapH31eR9BVOgBpTYliUTVUsdeWc1J76A,28983
12
12
  nimble_python/_streaming.py,sha256=StqGzUAIG9gQNCkRQnEAbN3IyiX4hDdCp2QR7_DANw8,10550
13
13
  nimble_python/_types.py,sha256=ZhbxWgjPQAqNY4ePn8aUJV26mm5oDBrZqskA1XyjlQ0,7601
14
- nimble_python/_version.py,sha256=FySRe9QcDTqiUANTKc2AucieJn5w2ihGxRF2CsNCAIY,166
14
+ nimble_python/_version.py,sha256=rXIufH_AC7NguPHfkNarkV6oPbHL3qKr3YYvc3t1qUM,166
15
15
  nimble_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  nimble_python/_utils/__init__.py,sha256=DJEWihdzRWrZI23vwocBkgvZCwn9iG7yV0c_9vKaysU,2355
17
17
  nimble_python/_utils/_compat.py,sha256=33246eDcl3pwL6kWsEhVuT4Akrd8gZEW9LPTm465ohk,1231
@@ -29,18 +29,20 @@ nimble_python/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZ
29
29
  nimble_python/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
30
30
  nimble_python/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
31
31
  nimble_python/resources/__init__.py,sha256=Wh5Ns-DfhwV5B1NL1sauYogLEctZiqtJxLuEVQzUvVw,1876
32
- nimble_python/resources/agent.py,sha256=HDsKDK7zYFSplZcG9pVFAdvEptZJ2t2A5XRqx3IT7s4,19088
32
+ nimble_python/resources/agent.py,sha256=tgwtB5duVj7x5fRgXXgbB0OszGt_CDaqTrCE8QMPAvc,23403
33
33
  nimble_python/resources/batches.py,sha256=LxPXo7mpDcXmtJAv7prVnDpJHkhHypix6ZNSxh9kpQU,11688
34
34
  nimble_python/resources/crawl.py,sha256=GOMDGANIPAfay-J3ujW9ghlK-h-aIy99ChIKRN-pZK8,20651
35
35
  nimble_python/resources/tasks.py,sha256=8rV6YZNpx8rq_83L8UZvt7HlPlRhY8SGrbVQAFDjBtM,13021
36
- nimble_python/types/__init__.py,sha256=al8UTqmM7bIeUUKbqDTHc6-23McbQAmVjF12tfN8r5g,2745
36
+ nimble_python/types/__init__.py,sha256=h7zpWsVxtwCctPf17V2Y35VZmy7i05VSrYP7Wi1Tbpg,2909
37
37
  nimble_python/types/agent_get_response.py,sha256=qQtjNztWHGWGJ_LKLn2-VtQlzv2AfkPvu0QaADRXqIg,1131
38
38
  nimble_python/types/agent_list_params.py,sha256=yUwgtiXrzfEXd3I--X_ISovY2BSHKXDvFZ2XUCUR9ew,670
39
39
  nimble_python/types/agent_list_response.py,sha256=kBEVOD9nlby5QsfaDkjPLXDJyQotph3HBo321jP8rb4,599
40
- nimble_python/types/agent_run_async_params.py,sha256=vaDEeQx9X1XWJlUcLSa0Bht0c65obrSDIb-AfHPWQ1w,725
40
+ nimble_python/types/agent_run_async_params.py,sha256=kma0zTwV2RK4BIDnOAneQ1Vx1sLZqSezBs403ODdoaI,877
41
41
  nimble_python/types/agent_run_async_response.py,sha256=aawcjhtW6FaWxIPcg-l-1yIhsQDLUoYOaoSf_MLJ67s,321
42
- nimble_python/types/agent_run_params.py,sha256=WbmK8oa-Iv0QS1I8X6AAXhrbbMPzNACV5IHSq8rdwGg,365
43
- nimble_python/types/agent_run_response.py,sha256=xvHQbGDhgaWyZy4gcNMfYEQ4YLSUVRiF54Qm2SwIE2g,8036
42
+ nimble_python/types/agent_run_batch_params.py,sha256=R6yqYKx4w4-WFitwU1uPUu4DskYIc32c9NeKccm8UQ4,909
43
+ nimble_python/types/agent_run_batch_response.py,sha256=0dtYQ6epddVqO2sdbeTDJyGGGAob24Cl3y1qC2k2AT4,1776
44
+ nimble_python/types/agent_run_params.py,sha256=hC7CkPKvFoJf-KKIifJNKwDv-O_dS6Mk65k-A7up_RY,517
45
+ nimble_python/types/agent_run_response.py,sha256=0kPTccMFP3kBu-9legG_dRP5HSDNiafqDgZkaYxnqFA,8155
44
46
  nimble_python/types/batch_get_response.py,sha256=5MIDHw3xt4UPdZY7eeYMDTJHbvyP4fCWNFMOLmuxcGM,2117
45
47
  nimble_python/types/batch_progress_response.py,sha256=oHEHXclc0NnI3TiGMalfElhZ15rfvR7nZRub9Gg_nqs,726
46
48
  nimble_python/types/client_extract_async_params.py,sha256=P26kzOH_UudChy5ZcCfoVz5YE-RVNCYifMAIAAeXErI,19339
@@ -56,7 +58,7 @@ nimble_python/types/crawl_status_response.py,sha256=rCNZkRNV65KzZpQCqbSX2FIW6kLh
56
58
  nimble_python/types/crawl_terminate_response.py,sha256=Kw0udMxFAfBZcpKfIpK8Dt1wKyjFM5zUgGTiBNl1K4c,271
57
59
  nimble_python/types/extract_async_response.py,sha256=__3OdwaSstOvDzaQnMv2w4cWeD4GN0-2zZ7YxdNDufs,1786
58
60
  nimble_python/types/extract_batch_response.py,sha256=AjiTdf7eHP_kE3TCX7nDr2OdzdKWZyLDFkh3duZlNyg,1774
59
- nimble_python/types/extract_response.py,sha256=3PFokSkbonRZoaDR8OhgDmDAB2VzYUpQuyAQCiY0BVg,8034
61
+ nimble_python/types/extract_response.py,sha256=B1Md11774eeSLinT7Z-a6ImP_X-WrUGoYSD1mbZMPjo,8153
60
62
  nimble_python/types/map_response.py,sha256=rNCav8_9GXdbdNIaIQEWi6f8c_YduImddoCzxV4i4Os,607
61
63
  nimble_python/types/search_response.py,sha256=lykUe_ICfs-dvtcz9nnrcFrV80FkSkWrR3ljumCyH4Y,2210
62
64
  nimble_python/types/task_get_response.py,sha256=YMLwfZv2ejUu-4VePPCUkojzXDZ_4tYtYCem9JfQh0U,1563
@@ -91,7 +93,7 @@ nimble_python/types/shared_params/scroll_action.py,sha256=6PJMWVc9JhjyrXeAsFnvHR
91
93
  nimble_python/types/shared_params/wait_action.py,sha256=2jlVgNNZcC2M9tka3xbmLkDocCJuoX_1qIGOmd6a2DU,1046
92
94
  nimble_python/types/shared_params/wait_for_element_action.py,sha256=cKhvFe09G2aQBFKBXg00S43ykQqgNyTLYR1DoJmDvTA,1364
93
95
  nimble_python/types/shared_params/wait_for_navigation_action.py,sha256=oPAK3OxZObqJjDEh9v0_q1ntHfWqgtXOp_k-oX8ZiHE,1257
94
- nimble_python-0.14.0.dist-info/METADATA,sha256=hCQzxTLHFSpfR9tdiU8hhLX9wb-qzqytAWAbNIZmWGg,15816
95
- nimble_python-0.14.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
96
- nimble_python-0.14.0.dist-info/licenses/LICENSE,sha256=khtIpaYdgNbXXcmzsxlSL_iKmh160uTREZTiMQKCB24,11336
97
- nimble_python-0.14.0.dist-info/RECORD,,
96
+ nimble_python-0.15.0.dist-info/METADATA,sha256=cW76ZhOAtS1wVqbiX5D_sJ-ivLDTB3NYq3cE8GmU2kI,15816
97
+ nimble_python-0.15.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
98
+ nimble_python-0.15.0.dist-info/licenses/LICENSE,sha256=khtIpaYdgNbXXcmzsxlSL_iKmh160uTREZTiMQKCB24,11336
99
+ nimble_python-0.15.0.dist-info/RECORD,,