raccoonai 0.1.0a12__py3-none-any.whl → 0.1.0a14__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 raccoonai might be problematic. Click here for more details.

raccoonai/_client.py CHANGED
@@ -48,8 +48,8 @@ __all__ = [
48
48
  ]
49
49
 
50
50
  ENVIRONMENTS: Dict[str, str] = {
51
- "production": "https://api.flyingraccoon.tech",
52
- "staging": "https://staging.flyingraccoon.tech",
51
+ "production": "https://api.raccoonai.tech",
52
+ "staging": "https://staging.raccoonai.tech",
53
53
  "local": "http://localhost:3800",
54
54
  }
55
55
 
raccoonai/_models.py CHANGED
@@ -65,7 +65,7 @@ from ._compat import (
65
65
  from ._constants import RAW_RESPONSE_HEADER
66
66
 
67
67
  if TYPE_CHECKING:
68
- from pydantic_core.core_schema import ModelField, LiteralSchema, ModelFieldsSchema
68
+ from pydantic_core.core_schema import ModelField, ModelSchema, LiteralSchema, ModelFieldsSchema
69
69
 
70
70
  __all__ = ["BaseModel", "GenericModel"]
71
71
 
@@ -646,15 +646,18 @@ def _build_discriminated_union_meta(*, union: type, meta_annotations: tuple[Any,
646
646
 
647
647
  def _extract_field_schema_pv2(model: type[BaseModel], field_name: str) -> ModelField | None:
648
648
  schema = model.__pydantic_core_schema__
649
+ if schema["type"] == "definitions":
650
+ schema = schema["schema"]
651
+
649
652
  if schema["type"] != "model":
650
653
  return None
651
654
 
655
+ schema = cast("ModelSchema", schema)
652
656
  fields_schema = schema["schema"]
653
657
  if fields_schema["type"] != "model-fields":
654
658
  return None
655
659
 
656
660
  fields_schema = cast("ModelFieldsSchema", fields_schema)
657
-
658
661
  field = fields_schema["fields"].get(field_name)
659
662
  if not field:
660
663
  return None
raccoonai/_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__ = "raccoonai"
4
- __version__ = "0.1.0-alpha.12" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.14" # x-release-please-version
@@ -123,7 +123,7 @@ class SessionsResource(SyncAPIResource):
123
123
  self,
124
124
  *,
125
125
  end_time: Optional[int] | NotGiven = NOT_GIVEN,
126
- execution_type: Optional[List[Literal["run", "extract", "fleet"]]] | NotGiven = NOT_GIVEN,
126
+ execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
127
127
  limit: Optional[int] | NotGiven = NOT_GIVEN,
128
128
  page: Optional[int] | NotGiven = NOT_GIVEN,
129
129
  raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
@@ -146,7 +146,7 @@ class SessionsResource(SyncAPIResource):
146
146
  Args:
147
147
  end_time: Filter sessions created before this Unix timestamp (in milliseconds).
148
148
 
149
- execution_type: Filter sessions by execution type (e.g., 'run', 'extract').
149
+ execution_type: Filter sessions by execution type (e.g., 'default', 'deepsearch').
150
150
 
151
151
  limit: Number of sessions per page (maximum 100).
152
152
 
@@ -424,7 +424,7 @@ class AsyncSessionsResource(AsyncAPIResource):
424
424
  self,
425
425
  *,
426
426
  end_time: Optional[int] | NotGiven = NOT_GIVEN,
427
- execution_type: Optional[List[Literal["run", "extract", "fleet"]]] | NotGiven = NOT_GIVEN,
427
+ execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
428
428
  limit: Optional[int] | NotGiven = NOT_GIVEN,
429
429
  page: Optional[int] | NotGiven = NOT_GIVEN,
430
430
  raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
@@ -447,7 +447,7 @@ class AsyncSessionsResource(AsyncAPIResource):
447
447
  Args:
448
448
  end_time: Filter sessions created before this Unix timestamp (in milliseconds).
449
449
 
450
- execution_type: Filter sessions by execution type (e.g., 'run', 'extract').
450
+ execution_type: Filter sessions by execution type (e.g., 'default', 'deepsearch').
451
451
 
452
452
  limit: Number of sessions per page (maximum 100).
453
453
 
@@ -52,7 +52,7 @@ class TasksResource(SyncAPIResource):
52
52
  self,
53
53
  *,
54
54
  end_time: Optional[int] | NotGiven = NOT_GIVEN,
55
- execution_type: Optional[List[Literal["run", "extract", "fleet"]]] | NotGiven = NOT_GIVEN,
55
+ execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
56
56
  limit: Optional[int] | NotGiven = NOT_GIVEN,
57
57
  page: Optional[int] | NotGiven = NOT_GIVEN,
58
58
  raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
@@ -74,7 +74,7 @@ class TasksResource(SyncAPIResource):
74
74
  Args:
75
75
  end_time: Filter tasks created before this Unix timestamp (in milliseconds).
76
76
 
77
- execution_type: Filter tasks by execution type (e.g., 'run', 'extract').
77
+ execution_type: Filter tasks by execution type (e.g., 'default', 'deepsearch').
78
78
 
79
79
  limit: Number of tasks per page (maximum 100).
80
80
 
@@ -183,7 +183,7 @@ class AsyncTasksResource(AsyncAPIResource):
183
183
  self,
184
184
  *,
185
185
  end_time: Optional[int] | NotGiven = NOT_GIVEN,
186
- execution_type: Optional[List[Literal["run", "extract", "fleet"]]] | NotGiven = NOT_GIVEN,
186
+ execution_type: Optional[List[Literal["default", "deepsearch", "fleet"]]] | NotGiven = NOT_GIVEN,
187
187
  limit: Optional[int] | NotGiven = NOT_GIVEN,
188
188
  page: Optional[int] | NotGiven = NOT_GIVEN,
189
189
  raccoon_passcode: Optional[str] | NotGiven = NOT_GIVEN,
@@ -205,7 +205,7 @@ class AsyncTasksResource(AsyncAPIResource):
205
205
  Args:
206
206
  end_time: Filter tasks created before this Unix timestamp (in milliseconds).
207
207
 
208
- execution_type: Filter tasks by execution type (e.g., 'run', 'extract').
208
+ execution_type: Filter tasks by execution type (e.g., 'default', 'deepsearch').
209
209
 
210
210
  limit: Number of tasks per page (maximum 100).
211
211
 
@@ -14,8 +14,10 @@ class SessionAllParams(TypedDict, total=False):
14
14
  end_time: Optional[int]
15
15
  """Filter sessions created before this Unix timestamp (in milliseconds)."""
16
16
 
17
- execution_type: Annotated[Optional[List[Literal["run", "extract", "fleet"]]], PropertyInfo(alias="executionType")]
18
- """Filter sessions by execution type (e.g., 'run', 'extract')."""
17
+ execution_type: Annotated[
18
+ Optional[List[Literal["default", "deepsearch", "fleet"]]], PropertyInfo(alias="executionType")
19
+ ]
20
+ """Filter sessions by execution type (e.g., 'default', 'deepsearch')."""
19
21
 
20
22
  limit: Optional[int]
21
23
  """Number of sessions per page (maximum 100)."""
@@ -25,8 +25,8 @@ class Session(BaseModel):
25
25
  execution_time: int = FieldInfo(alias="executionTime")
26
26
  """Time taken for the session execution (in milliseconds)."""
27
27
 
28
- execution_type: Literal["run", "extract", "fleet"] = FieldInfo(alias="executionType")
29
- """The type of execution performed (e.g., 'run', 'extract')."""
28
+ execution_type: Literal["default", "deepsearch", "fleet"] = FieldInfo(alias="executionType")
29
+ """The type of execution performed (e.g., 'default', 'deepsearch')."""
30
30
 
31
31
  inputs: object
32
32
  """Input parameters used for the session."""
@@ -2,10 +2,10 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Dict, List, Iterable, Optional
6
- from typing_extensions import Literal, TypedDict
5
+ from typing import Dict, List, Union, Iterable, Optional
6
+ from typing_extensions import Literal, TypeAlias, TypedDict
7
7
 
8
- __all__ = ["SessionCreateParams", "Advanced", "AdvancedProxy", "Settings"]
8
+ __all__ = ["SessionCreateParams", "Advanced", "AdvancedProxy", "AdvancedProxyProxySettings", "Settings"]
9
9
 
10
10
 
11
11
  class SessionCreateParams(TypedDict, total=False):
@@ -43,16 +43,13 @@ class SessionCreateParams(TypedDict, total=False):
43
43
  """The entrypoint url for the session."""
44
44
 
45
45
 
46
- class AdvancedProxy(TypedDict, total=False):
46
+ class AdvancedProxyProxySettings(TypedDict, total=False):
47
47
  city: Optional[str]
48
48
  """Target city."""
49
49
 
50
50
  country: Optional[str]
51
51
  """Target country (2-letter ISO code)."""
52
52
 
53
- enable: bool
54
- """Whether to use a proxy for the browser session."""
55
-
56
53
  state: Optional[str]
57
54
  """Target state (2-letter code)."""
58
55
 
@@ -60,6 +57,9 @@ class AdvancedProxy(TypedDict, total=False):
60
57
  """Target postal code."""
61
58
 
62
59
 
60
+ AdvancedProxy: TypeAlias = Union[AdvancedProxyProxySettings, bool]
61
+
62
+
63
63
  class Advanced(TypedDict, total=False):
64
64
  block_ads: Optional[bool]
65
65
  """Whether to block advertisements during the browser session."""
@@ -67,8 +67,11 @@ class Advanced(TypedDict, total=False):
67
67
  extension_ids: Optional[Iterable[object]]
68
68
  """list of extension ids"""
69
69
 
70
- proxy: Optional[AdvancedProxy]
71
- """Proxy details for the browser session."""
70
+ proxy: AdvancedProxy
71
+ """Proxy details for the browser session.
72
+
73
+ Automatically defaults to True if solve_captchas is on.
74
+ """
72
75
 
73
76
  solve_captchas: Optional[bool]
74
77
  """Whether to attempt automatic CAPTCHA solving."""
@@ -14,7 +14,7 @@ class SessionCreateResponse(BaseModel):
14
14
  session_id: str
15
15
  """A unique identifier for the created session."""
16
16
 
17
- status: Literal["starting", "running", "terminated", "completed", "unknown"]
17
+ status: Literal["starting", "running", "terminated", "completed", "unknown", "success", "failure"]
18
18
  """The current status of the session."""
19
19
 
20
20
  websocket_url: str
@@ -14,8 +14,10 @@ class TaskAllParams(TypedDict, total=False):
14
14
  end_time: Optional[int]
15
15
  """Filter tasks created before this Unix timestamp (in milliseconds)."""
16
16
 
17
- execution_type: Annotated[Optional[List[Literal["run", "extract", "fleet"]]], PropertyInfo(alias="executionType")]
18
- """Filter tasks by execution type (e.g., 'run', 'extract')."""
17
+ execution_type: Annotated[
18
+ Optional[List[Literal["default", "deepsearch", "fleet"]]], PropertyInfo(alias="executionType")
19
+ ]
20
+ """Filter tasks by execution type (e.g., 'default', 'deepsearch')."""
19
21
 
20
22
  limit: Optional[int]
21
23
  """Number of tasks per page (maximum 100)."""
@@ -25,8 +25,8 @@ class Task(BaseModel):
25
25
  execution_time: int = FieldInfo(alias="executionTime")
26
26
  """Time taken for the task execution (in seconds)."""
27
27
 
28
- execution_type: Literal["run", "extract"] = FieldInfo(alias="executionType")
29
- """The type of execution performed (e.g., 'run', 'extract')."""
28
+ execution_type: Literal["default", "deepsearch"] = FieldInfo(alias="executionType")
29
+ """The type of execution performed (e.g., 'default', 'deepsearch')."""
30
30
 
31
31
  inputs: object
32
32
  """Input parameters used for the task execution."""
@@ -3,9 +3,16 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  from typing import Union, Iterable, Optional
6
- from typing_extensions import Literal, Required, TypedDict
6
+ from typing_extensions import Literal, Required, TypeAlias, TypedDict
7
7
 
8
- __all__ = ["LamRunParamsBase", "Advanced", "AdvancedProxy", "LamRunParamsNonStreaming", "LamRunParamsStreaming"]
8
+ __all__ = [
9
+ "LamRunParamsBase",
10
+ "Advanced",
11
+ "AdvancedProxy",
12
+ "AdvancedProxyProxySettings",
13
+ "LamRunParamsNonStreaming",
14
+ "LamRunParamsStreaming",
15
+ ]
9
16
 
10
17
 
11
18
  class LamRunParamsBase(TypedDict, total=False):
@@ -47,16 +54,13 @@ class LamRunParamsBase(TypedDict, total=False):
47
54
  """
48
55
 
49
56
 
50
- class AdvancedProxy(TypedDict, total=False):
57
+ class AdvancedProxyProxySettings(TypedDict, total=False):
51
58
  city: Optional[str]
52
59
  """Target city."""
53
60
 
54
61
  country: Optional[str]
55
62
  """Target country (2-letter ISO code)."""
56
63
 
57
- enable: bool
58
- """Whether to use a proxy for the browser session."""
59
-
60
64
  state: Optional[str]
61
65
  """Target state (2-letter code)."""
62
66
 
@@ -64,6 +68,9 @@ class AdvancedProxy(TypedDict, total=False):
64
68
  """Target postal code."""
65
69
 
66
70
 
71
+ AdvancedProxy: TypeAlias = Union[AdvancedProxyProxySettings, bool]
72
+
73
+
67
74
  class Advanced(TypedDict, total=False):
68
75
  block_ads: Optional[bool]
69
76
  """Whether to block advertisements during the browser session."""
@@ -71,8 +78,11 @@ class Advanced(TypedDict, total=False):
71
78
  extension_ids: Optional[Iterable[object]]
72
79
  """list of extension ids"""
73
80
 
74
- proxy: Optional[AdvancedProxy]
75
- """Proxy details for the browser session."""
81
+ proxy: AdvancedProxy
82
+ """Proxy details for the browser session.
83
+
84
+ Automatically defaults to True if solve_captchas is on.
85
+ """
76
86
 
77
87
  solve_captchas: Optional[bool]
78
88
  """Whether to attempt automatic CAPTCHA solving."""
@@ -1,12 +1,11 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.3
2
2
  Name: raccoonai
3
- Version: 0.1.0a12
3
+ Version: 0.1.0a14
4
4
  Summary: The official Python library for the raccoonAI API
5
5
  Project-URL: Homepage, https://github.com/raccoonaihq/raccoonai-python
6
6
  Project-URL: Repository, https://github.com/raccoonaihq/raccoonai-python
7
- Author-email: Raccoon AI <team@flyingraccoon.tech>
8
- License-Expression: Apache-2.0
9
- License-File: LICENSE
7
+ Author-email: Raccoon AI <team@raccoonai.tech>
8
+ License: Apache-2.0
10
9
  Classifier: Intended Audience :: Developers
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Operating System :: MacOS
@@ -42,7 +41,7 @@ It is generated with [Stainless](https://www.stainless.com/).
42
41
 
43
42
  ## Documentation
44
43
 
45
- The REST API documentation can be found on [docs.flyingraccoon.tech](https://docs.flyingraccoon.tech). The full API of this library can be found in [api.md](https://github.com/raccoonaihq/raccoonai-python/tree/main/api.md).
44
+ The REST API documentation can be found on [docs.raccoonai.tech](https://docs.raccoonai.tech). The full API of this library can be found in [api.md](https://github.com/raccoonaihq/raccoonai-python/tree/main/api.md).
46
45
 
47
46
  ## Installation
48
47
 
@@ -167,7 +166,6 @@ response = client.lam.run(
167
166
  "proxy": {
168
167
  "city": "sanfrancisco",
169
168
  "country": "us",
170
- "enable": True,
171
169
  "state": "ca",
172
170
  "zip": 94102,
173
171
  },
@@ -1,17 +1,17 @@
1
1
  raccoonai/__init__.py,sha256=ut5jCAExi9IzT9pzrjpsJoVhn6bzWI6jIXNXB-fXBY4,2523
2
2
  raccoonai/_base_client.py,sha256=JVsNh33YxdFcdvPaIoCuOZGE_lx_3U7_OtuaO9doXec,64960
3
- raccoonai/_client.py,sha256=DL6680pvE3Ky7id0kfnT4ssMHgzu52m6_0SQTgk9uL0,18907
3
+ raccoonai/_client.py,sha256=-QSzuORMlEWUeMf2Jc20frkx0KncFT66C-aQ5qXGFFw,18899
4
4
  raccoonai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
5
  raccoonai/_constants.py,sha256=FkmVVcfVS3gR69v_fTrqA_qjakyxJHOWJcw3jpEck8Y,465
6
6
  raccoonai/_exceptions.py,sha256=Y-DcD2M8xkSw8IEkk4KHj73O8GQxCtWm4HWYQ02j7z8,3226
7
7
  raccoonai/_files.py,sha256=a0SHeBu6FT5rt_CKotWZyna5GpgB42go35AUK5sEiD4,3624
8
- raccoonai/_models.py,sha256=PDLSNsn3Umxm3UMZPgyBiyN308rRzzPX6F9NO9FU2vs,28943
8
+ raccoonai/_models.py,sha256=CTC-fpbbGneROztxHX-PkLntPt1ZMmwDqoKY9VAIOVg,29071
9
9
  raccoonai/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
10
  raccoonai/_resource.py,sha256=zfxyYCvzutc1dvCP-j9UPc1sn9U8F-X9gGyqleOvCxY,1118
11
11
  raccoonai/_response.py,sha256=q3bfYfS84vvIRPz_wL8djh6ir9UHGDzzF2l3gKDOWX8,28807
12
12
  raccoonai/_streaming.py,sha256=zHnkREZO5v33YJ7P0YZ7KhJET4ZzevGw1JzRY2-Mls4,10112
13
13
  raccoonai/_types.py,sha256=sN2zE-vBl9KBlBKL8fkN2DNZnItdjDl-3fTpP9cg69w,6146
14
- raccoonai/_version.py,sha256=esOHVTN02lWc6MSgti5NLEAgNW0YQDeA7BeVg3qcqXY,170
14
+ raccoonai/_version.py,sha256=NLu9Jee3CuovfCdK56b1bFGb8GhzNG6C66St0MHe4io,170
15
15
  raccoonai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  raccoonai/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  raccoonai/_utils/_logs.py,sha256=Af3FKkE-LAPzYTl8bnFD4yPvPBIO-QyCra-r9_dSmOM,784
@@ -27,33 +27,33 @@ raccoonai/resources/__init__.py,sha256=J3rNFGIi-0n5C4uqUHDax-dZCtNhFxnz1_LiF1Hm4
27
27
  raccoonai/resources/fleet/__init__.py,sha256=vGB3Zi0TL72b8i88mnBm-evtTa2DMGqZAQhdfMis6tQ,1517
28
28
  raccoonai/resources/fleet/extensions.py,sha256=lFILcLXF-9MtJfwvIN4o7LxcRCJfwR5exQuJZGHXx6Q,15318
29
29
  raccoonai/resources/fleet/fleet.py,sha256=q8Ola3g7CQOMO0XQ9CDsQ0iG3n7FEnUe_4VJLGGlGfw,4818
30
- raccoonai/resources/fleet/sessions.py,sha256=LmzChnOeLyZd7DziLVSruRpYf0PFd4a6me6lF-rehl0,28512
30
+ raccoonai/resources/fleet/sessions.py,sha256=0sRBZIyRzpaEpR8P8pnylTw5QDp2dJrrGLVZlkkwuPs,28540
31
31
  raccoonai/resources/lam/__init__.py,sha256=Thj6eBm5r07sqkqyE9K1JGjNKyzgaodJLy-qNrfrCWc,950
32
32
  raccoonai/resources/lam/lam.py,sha256=dkimES5beXY5eRXjrg62eAJxXw6kEIPoSweSBkRmAmU,22327
33
- raccoonai/resources/lam/tasks.py,sha256=yDfIyMqp0AdZshLJz3fBtvmL1xSxRcGBDgHGFqdbJKo,12514
33
+ raccoonai/resources/lam/tasks.py,sha256=e9YbmtwNx9tkVTP-F6RfL1uCDr95RymGIziC7vzn2dE,12542
34
34
  raccoonai/resources/tail/__init__.py,sha256=1iOxKP4PRjPGjU1ss2L_8YbwPZ_MIA5cnyFbyELeRoA,1387
35
35
  raccoonai/resources/tail/apps.py,sha256=532sI0g2sLUrLV3z_8qfbW8qnTTc8HyyQax1PD52BrA,8008
36
36
  raccoonai/resources/tail/tail.py,sha256=L3HtDA-G4GSGdD5YjWp5IcjuYGINRFdua0-YKHrAavA,4517
37
37
  raccoonai/resources/tail/users.py,sha256=Y-_NjYurHFM7fTJjPeZ2yyL0n3VO_a1CZP1SM6u_9FU,14503
38
38
  raccoonai/types/__init__.py,sha256=zPr9s--p1dwMuN9TZf38xnrr_T0G8FA2LLIPUazW4FA,243
39
- raccoonai/types/lam_run_params.py,sha256=jwWRy1P8iV6_nsGhMUPv4BMI2IfDDsLO0W7ZmCHvH5Q,2603
39
+ raccoonai/types/lam_run_params.py,sha256=WEz4-fSyhk72lke57m68n0ATFeiHwpOsaWvnguoz6yM,2733
40
40
  raccoonai/types/lam_run_response.py,sha256=pOBB0xmGZou7vMG-dmhUk6v5pMyJF4dXWnNWXAHvfW0,891
41
41
  raccoonai/types/fleet/__init__.py,sha256=4z1oeJkLJ-abdHCDxQ0lO9zOkpJXtSaR5qgVeVsaHLE,1101
42
42
  raccoonai/types/fleet/extension_all_response.py,sha256=J9Y5qq3Eukik_0Bmyq75kLEhJJohJOF_Hx8vWUv_Sq8,527
43
43
  raccoonai/types/fleet/extension_get_response.py,sha256=Z0JcFPJhu22Hw0w-qRh1cGRqMlIaIMu1JM1_Z6eUPbE,398
44
44
  raccoonai/types/fleet/extension_upload_params.py,sha256=UUR2H0DrvNgpLJfCTyO28Gv5xI8EEOEFErwmj3Ru5z0,328
45
45
  raccoonai/types/fleet/extension_upload_response.py,sha256=0ZETPTZa9h7T--ShFskafm_1bDuik_8xt1Z29BuSN-s,404
46
- raccoonai/types/fleet/session_all_params.py,sha256=C2YU4p3o3CbmgTmkRMz3wALnELK9hmua-UIiOegF-vI,1404
47
- raccoonai/types/fleet/session_all_response.py,sha256=tpNb-KfrftO9k8lgzFHO7ualFLBbJNUHpUj0cA6FpBU,1707
48
- raccoonai/types/fleet/session_create_params.py,sha256=pM4bnfW-ZQSxfacZ-RZHoagzWJx9cVbgnZ6Pa_Bqq5w,2457
49
- raccoonai/types/fleet/session_create_response.py,sha256=yBAcAbj5ZMmLR4AoOB0rd-GMPbs5bUOSRVu6RJ2E3lA,580
46
+ raccoonai/types/fleet/session_all_params.py,sha256=8PmXYnnvdc52Hw4q4d0bzWMeeq_7m5LraRghHwI_wl0,1432
47
+ raccoonai/types/fleet/session_all_response.py,sha256=Z4_iJCGAtfFpYZTiBmYAZJaPzyVUfS1Qkwe5nEeuPcY,1721
48
+ raccoonai/types/fleet/session_create_params.py,sha256=1DK11wJV9XqXRRIHPuHMpusxQeg3ueM1a5NcAaQOoZA,2567
49
+ raccoonai/types/fleet/session_create_response.py,sha256=WbVwyfesj9QWuYEhDPoNji7U5eJmEOA44NmImWCl4qk,602
50
50
  raccoonai/types/fleet/session_logs_response.py,sha256=rHcBPnymndXeBYADOumMsdR6pKe_z0Cpt-x-dIUcjew,365
51
51
  raccoonai/types/fleet/session_media_response.py,sha256=FsE4vgxweb0y25J5YYa_fHbVy8IaQfstEZ90QIxVx3c,1118
52
52
  raccoonai/types/fleet/session_status_response.py,sha256=bmmZk4f6aV3lS3ENILoLQm38dKVkVY4uN-H-OTUrxgM,432
53
53
  raccoonai/types/fleet/session_terminate_response.py,sha256=UbA_9CwZOmRMcxqaNMIFNGA8pwpAY1fagb_2voYBQ0c,438
54
54
  raccoonai/types/lam/__init__.py,sha256=dak9LY4a3LXk_EWubxjYE51G4mbZI1FNo-o1xHdR8fU,321
55
- raccoonai/types/lam/task_all_params.py,sha256=fm4OwvE2yuIWkI8rCEsqtbBiP3o1gTpL1D4wwmLQNLo,1294
56
- raccoonai/types/lam/task_all_response.py,sha256=Hyj_tggAeALCsYTY6Gz3v3n1LCnusuOl0trP6B-ec48,1469
55
+ raccoonai/types/lam/task_all_params.py,sha256=gGWnYd4IK1BoQS69eHqE9CSShoio9bNISrmZ_XcSArQ,1322
56
+ raccoonai/types/lam/task_all_response.py,sha256=p0S2Dq0T2NSHc4O3wuk1HQJr9Xopey0Hy7kI4VVPDpE,1483
57
57
  raccoonai/types/lam/task_media_response.py,sha256=SWU3csSTgaLOqI_vAqDqXpJUoKGHjBOCobAzRxeal1A,1356
58
58
  raccoonai/types/tail/__init__.py,sha256=ArwoGhkvRtzQrVPzwullb4kSzH_IU5HProi1UHiGOrI,738
59
59
  raccoonai/types/tail/app_all_response.py,sha256=BJ3eYZZYKcrwRvJwt3DNuTBpADvoUmUG7g9rLofRpYw,1158
@@ -65,7 +65,7 @@ raccoonai/types/tail/user_create_params.py,sha256=4Pe2d2L_TqNAeBNtG92ml1zLA3wTt_
65
65
  raccoonai/types/tail/user_create_response.py,sha256=wGZuNVLZpm8ph60zD1aJHP1kPs9CCn2O7ZsyqEHRGgM,518
66
66
  raccoonai/types/tail/user_status_params.py,sha256=gxSN0_zGeqOSKpDaoKh0O6l8j0jMyxP7f7ONIPWOVZE,459
67
67
  raccoonai/types/tail/user_status_response.py,sha256=BakDkr-yhueamBAx-wrHCUZ4h9rYJCQPnDD49paA_aU,472
68
- raccoonai-0.1.0a12.dist-info/METADATA,sha256=UGE-pwFw-yb2bqMthiKVVV04NoHrTkXbWFJCFqEvmog,15598
69
- raccoonai-0.1.0a12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
70
- raccoonai-0.1.0a12.dist-info/licenses/LICENSE,sha256=enGvZ2fGU7wGgMPWkgyWhnsFhCpxwdeG_selO_ovoTM,11340
71
- raccoonai-0.1.0a12.dist-info/RECORD,,
68
+ raccoonai-0.1.0a14.dist-info/METADATA,sha256=q9Ja3c0Dc0nSfULUOf9w3sNjYx926gwD5YZiIa-mgl4,15525
69
+ raccoonai-0.1.0a14.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
70
+ raccoonai-0.1.0a14.dist-info/licenses/LICENSE,sha256=enGvZ2fGU7wGgMPWkgyWhnsFhCpxwdeG_selO_ovoTM,11340
71
+ raccoonai-0.1.0a14.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.26.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any