asteroid-odyssey 1.6.29__py3-none-any.whl → 1.6.38__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.
- asteroid_odyssey/models/agents_profile_agent_profile.py +9 -1
- asteroid_odyssey/models/agents_profile_create_agent_profile_request.py +9 -1
- asteroid_odyssey/models/agents_profile_update_agent_profile_request.py +9 -1
- {asteroid_odyssey-1.6.29.dist-info → asteroid_odyssey-1.6.38.dist-info}/METADATA +1 -1
- {asteroid_odyssey-1.6.29.dist-info → asteroid_odyssey-1.6.38.dist-info}/RECORD +7 -7
- {asteroid_odyssey-1.6.29.dist-info → asteroid_odyssey-1.6.38.dist-info}/WHEEL +0 -0
- {asteroid_odyssey-1.6.29.dist-info → asteroid_odyssey-1.6.38.dist-info}/top_level.txt +0 -0
|
@@ -43,11 +43,15 @@ class AgentsProfileAgentProfile(BaseModel):
|
|
|
43
43
|
operating_system: Optional[AgentsProfileOperatingSystem] = Field(default=None, description="Operating system to emulate", alias="operatingSystem")
|
|
44
44
|
extra_stealth: StrictBool = Field(description="Whether extra stealth mode is enabled", alias="extraStealth")
|
|
45
45
|
cache_persistence: StrictBool = Field(description="Whether to persist browser cache between sessions", alias="cachePersistence")
|
|
46
|
+
adblock_active: StrictBool = Field(description="Whether to enable ad blocking", alias="adblockActive")
|
|
47
|
+
popup_blocker_active: StrictBool = Field(description="Whether to enable popup blocking (requires adblock to be active)", alias="popupBlockerActive")
|
|
48
|
+
force_popups_as_tabs_active: StrictBool = Field(description="Whether to force popups to open as tabs", alias="forcePopupsAsTabsActive")
|
|
49
|
+
media_blocker_active: StrictBool = Field(description="Whether to enable media blocking (images, videos, etc.)", alias="mediaBlockerActive")
|
|
46
50
|
credentials: List[AgentsProfileCredential] = Field(description="List of credentials associated with this profile")
|
|
47
51
|
cookies: List[AgentsProfileCookie] = Field(description="List of cookies associated with this profile")
|
|
48
52
|
created_at: datetime = Field(description="When the profile was created", alias="createdAt")
|
|
49
53
|
updated_at: datetime = Field(description="When the profile was last updated", alias="updatedAt")
|
|
50
|
-
__properties: ClassVar[List[str]] = ["id", "name", "description", "organizationId", "proxyCC", "proxyType", "captchaSolverActive", "stickyIP", "operatingSystem", "extraStealth", "cachePersistence", "credentials", "cookies", "createdAt", "updatedAt"]
|
|
54
|
+
__properties: ClassVar[List[str]] = ["id", "name", "description", "organizationId", "proxyCC", "proxyType", "captchaSolverActive", "stickyIP", "operatingSystem", "extraStealth", "cachePersistence", "adblockActive", "popupBlockerActive", "forcePopupsAsTabsActive", "mediaBlockerActive", "credentials", "cookies", "createdAt", "updatedAt"]
|
|
51
55
|
|
|
52
56
|
model_config = ConfigDict(
|
|
53
57
|
populate_by_name=True,
|
|
@@ -125,6 +129,10 @@ class AgentsProfileAgentProfile(BaseModel):
|
|
|
125
129
|
"operatingSystem": obj.get("operatingSystem"),
|
|
126
130
|
"extraStealth": obj.get("extraStealth"),
|
|
127
131
|
"cachePersistence": obj.get("cachePersistence"),
|
|
132
|
+
"adblockActive": obj.get("adblockActive"),
|
|
133
|
+
"popupBlockerActive": obj.get("popupBlockerActive"),
|
|
134
|
+
"forcePopupsAsTabsActive": obj.get("forcePopupsAsTabsActive"),
|
|
135
|
+
"mediaBlockerActive": obj.get("mediaBlockerActive"),
|
|
128
136
|
"credentials": [AgentsProfileCredential.from_dict(_item) for _item in obj["credentials"]] if obj.get("credentials") is not None else None,
|
|
129
137
|
"cookies": [AgentsProfileCookie.from_dict(_item) for _item in obj["cookies"]] if obj.get("cookies") is not None else None,
|
|
130
138
|
"createdAt": obj.get("createdAt"),
|
|
@@ -42,9 +42,13 @@ class AgentsProfileCreateAgentProfileRequest(BaseModel):
|
|
|
42
42
|
operating_system: Optional[AgentsProfileOperatingSystem] = Field(default=None, description="Operating system to emulate", alias="operatingSystem")
|
|
43
43
|
extra_stealth: Optional[StrictBool] = Field(default=False, description="Whether to enable extra stealth mode", alias="extraStealth")
|
|
44
44
|
cache_persistence: Optional[StrictBool] = Field(default=False, description="Whether to persist browser cache between sessions", alias="cachePersistence")
|
|
45
|
+
adblock_active: Optional[StrictBool] = Field(default=False, description="Whether to enable ad blocking", alias="adblockActive")
|
|
46
|
+
popup_blocker_active: Optional[StrictBool] = Field(default=False, description="Whether to enable popup blocking (requires adblock to be active)", alias="popupBlockerActive")
|
|
47
|
+
force_popups_as_tabs_active: Optional[StrictBool] = Field(default=True, description="Whether to force popups to open as tabs", alias="forcePopupsAsTabsActive")
|
|
48
|
+
media_blocker_active: Optional[StrictBool] = Field(default=False, description="Whether to enable media blocking (images, videos, etc.)", alias="mediaBlockerActive")
|
|
45
49
|
credentials: Optional[List[AgentsProfileCredential]] = Field(default=None, description="Initial credentials to create with the profile")
|
|
46
50
|
cookies: Optional[List[AgentsProfileCookie]] = Field(default=None, description="Initial cookies to create with the profile")
|
|
47
|
-
__properties: ClassVar[List[str]] = ["name", "description", "organizationId", "proxyCC", "proxyType", "captchaSolverActive", "stickyIP", "operatingSystem", "extraStealth", "cachePersistence", "credentials", "cookies"]
|
|
51
|
+
__properties: ClassVar[List[str]] = ["name", "description", "organizationId", "proxyCC", "proxyType", "captchaSolverActive", "stickyIP", "operatingSystem", "extraStealth", "cachePersistence", "adblockActive", "popupBlockerActive", "forcePopupsAsTabsActive", "mediaBlockerActive", "credentials", "cookies"]
|
|
48
52
|
|
|
49
53
|
model_config = ConfigDict(
|
|
50
54
|
populate_by_name=True,
|
|
@@ -121,6 +125,10 @@ class AgentsProfileCreateAgentProfileRequest(BaseModel):
|
|
|
121
125
|
"operatingSystem": obj.get("operatingSystem"),
|
|
122
126
|
"extraStealth": obj.get("extraStealth") if obj.get("extraStealth") is not None else False,
|
|
123
127
|
"cachePersistence": obj.get("cachePersistence") if obj.get("cachePersistence") is not None else False,
|
|
128
|
+
"adblockActive": obj.get("adblockActive") if obj.get("adblockActive") is not None else False,
|
|
129
|
+
"popupBlockerActive": obj.get("popupBlockerActive") if obj.get("popupBlockerActive") is not None else False,
|
|
130
|
+
"forcePopupsAsTabsActive": obj.get("forcePopupsAsTabsActive") if obj.get("forcePopupsAsTabsActive") is not None else True,
|
|
131
|
+
"mediaBlockerActive": obj.get("mediaBlockerActive") if obj.get("mediaBlockerActive") is not None else False,
|
|
124
132
|
"credentials": [AgentsProfileCredential.from_dict(_item) for _item in obj["credentials"]] if obj.get("credentials") is not None else None,
|
|
125
133
|
"cookies": [AgentsProfileCookie.from_dict(_item) for _item in obj["cookies"]] if obj.get("cookies") is not None else None
|
|
126
134
|
})
|
|
@@ -41,12 +41,16 @@ class AgentsProfileUpdateAgentProfileRequest(BaseModel):
|
|
|
41
41
|
operating_system: Optional[AgentsProfileOperatingSystem] = Field(default=None, description="Operating system to emulate", alias="operatingSystem")
|
|
42
42
|
extra_stealth: Optional[StrictBool] = Field(default=None, description="Whether to enable extra stealth mode", alias="extraStealth")
|
|
43
43
|
cache_persistence: Optional[StrictBool] = Field(default=None, description="Whether to persist browser cache between sessions", alias="cachePersistence")
|
|
44
|
+
adblock_active: Optional[StrictBool] = Field(default=None, description="Whether to enable ad blocking", alias="adblockActive")
|
|
45
|
+
popup_blocker_active: Optional[StrictBool] = Field(default=None, description="Whether to enable popup blocking (requires adblock to be active)", alias="popupBlockerActive")
|
|
46
|
+
force_popups_as_tabs_active: Optional[StrictBool] = Field(default=None, description="Whether to force popups to open as tabs", alias="forcePopupsAsTabsActive")
|
|
47
|
+
media_blocker_active: Optional[StrictBool] = Field(default=None, description="Whether to enable media blocking (images, videos, etc.)", alias="mediaBlockerActive")
|
|
44
48
|
credentials_to_add: Optional[List[AgentsProfileCredential]] = Field(default=None, description="Credentials to add to the profile", alias="credentialsToAdd")
|
|
45
49
|
credentials_to_update: Optional[List[AgentsProfileCredentialUpdate]] = Field(default=None, description="Credentials to update by name (matched case-insensitively)", alias="credentialsToUpdate")
|
|
46
50
|
credentials_to_delete: Optional[List[StrictStr]] = Field(default=None, description="IDs of credentials to remove from the profile", alias="credentialsToDelete")
|
|
47
51
|
cookies_to_add: Optional[List[AgentsProfileCookie]] = Field(default=None, description="Cookies to add to the profile", alias="cookiesToAdd")
|
|
48
52
|
cookies_to_delete: Optional[List[StrictStr]] = Field(default=None, description="IDs of cookies to remove from the profile", alias="cookiesToDelete")
|
|
49
|
-
__properties: ClassVar[List[str]] = ["name", "description", "proxyCC", "proxyType", "captchaSolverActive", "operatingSystem", "extraStealth", "cachePersistence", "credentialsToAdd", "credentialsToUpdate", "credentialsToDelete", "cookiesToAdd", "cookiesToDelete"]
|
|
53
|
+
__properties: ClassVar[List[str]] = ["name", "description", "proxyCC", "proxyType", "captchaSolverActive", "operatingSystem", "extraStealth", "cachePersistence", "adblockActive", "popupBlockerActive", "forcePopupsAsTabsActive", "mediaBlockerActive", "credentialsToAdd", "credentialsToUpdate", "credentialsToDelete", "cookiesToAdd", "cookiesToDelete"]
|
|
50
54
|
|
|
51
55
|
model_config = ConfigDict(
|
|
52
56
|
populate_by_name=True,
|
|
@@ -128,6 +132,10 @@ class AgentsProfileUpdateAgentProfileRequest(BaseModel):
|
|
|
128
132
|
"operatingSystem": obj.get("operatingSystem"),
|
|
129
133
|
"extraStealth": obj.get("extraStealth"),
|
|
130
134
|
"cachePersistence": obj.get("cachePersistence"),
|
|
135
|
+
"adblockActive": obj.get("adblockActive"),
|
|
136
|
+
"popupBlockerActive": obj.get("popupBlockerActive"),
|
|
137
|
+
"forcePopupsAsTabsActive": obj.get("forcePopupsAsTabsActive"),
|
|
138
|
+
"mediaBlockerActive": obj.get("mediaBlockerActive"),
|
|
131
139
|
"credentialsToAdd": [AgentsProfileCredential.from_dict(_item) for _item in obj["credentialsToAdd"]] if obj.get("credentialsToAdd") is not None else None,
|
|
132
140
|
"credentialsToUpdate": [AgentsProfileCredentialUpdate.from_dict(_item) for _item in obj["credentialsToUpdate"]] if obj.get("credentialsToUpdate") is not None else None,
|
|
133
141
|
"credentialsToDelete": obj.get("credentialsToDelete"),
|
|
@@ -97,17 +97,17 @@ asteroid_odyssey/models/agents_files_temp_files_response.py,sha256=QBUpg40FdZ_Sa
|
|
|
97
97
|
asteroid_odyssey/models/agents_graph_models_nodes_properties_playwright_script_llm_var.py,sha256=hRX54qN8R-Ib_A3LVVJKZiVc0encVVXc-4mje80wFy8,3005
|
|
98
98
|
asteroid_odyssey/models/agents_graph_models_nodes_properties_playwright_script_llm_var_type.py,sha256=lu_J1UrE9WKhzNJV34kVDxKxsjV3fvFBJjnnB0LsgIE,914
|
|
99
99
|
asteroid_odyssey/models/agents_graph_models_transitions_transition_type.py,sha256=QnUO0ARjDeBRhPdRiR2emGrSkD8lIJnNgpzG7OHzeTg,882
|
|
100
|
-
asteroid_odyssey/models/agents_profile_agent_profile.py,sha256=
|
|
100
|
+
asteroid_odyssey/models/agents_profile_agent_profile.py,sha256=xyfmixGou0XDZiOlPWHWscDfZoGr7lQIxHepsJgOZ00,7448
|
|
101
101
|
asteroid_odyssey/models/agents_profile_cookie.py,sha256=972PRRMXbzZC5ed2Ql2W-1s_ZvrZwRR15BEQXtRziog,4250
|
|
102
102
|
asteroid_odyssey/models/agents_profile_country_code.py,sha256=fJpWW77odDYMc5xssM8LP-v9KkdHHwTGNncvhsyGHr4,888
|
|
103
|
-
asteroid_odyssey/models/agents_profile_create_agent_profile_request.py,sha256=
|
|
103
|
+
asteroid_odyssey/models/agents_profile_create_agent_profile_request.py,sha256=g-N4l7_UpSWD0vWnJs1IS4KA1yzjdPHKdsuyq-irxhA,7804
|
|
104
104
|
asteroid_odyssey/models/agents_profile_credential.py,sha256=4RtP_-koDtuKADkR0JIXPUIGVjAuFrkrqiVlWs6UbmI,3246
|
|
105
105
|
asteroid_odyssey/models/agents_profile_credential_update.py,sha256=nsdvzfhZ0uZPp5Vytx5l8Wi5I3UTJfHVsCxPAsV3-IY,2926
|
|
106
106
|
asteroid_odyssey/models/agents_profile_operating_system.py,sha256=xQCfTpEEMtzXtTnNcWerahiL7J4_J1f-VUm-c74Rxig,814
|
|
107
107
|
asteroid_odyssey/models/agents_profile_proxy_type.py,sha256=NyLZ_oUcfOz47MFZhnXfx_9oe25gdZFGYykC83ZoP_Q,831
|
|
108
108
|
asteroid_odyssey/models/agents_profile_same_site.py,sha256=NBMQWIzxbGPZwghb4r7wl9lHqisvgXNzpMMNf8RYb9Q,800
|
|
109
109
|
asteroid_odyssey/models/agents_profile_sort_field.py,sha256=mLH_ycO9YNwwSMExi193Ty7MqyiEUvjNxd5FBOUUdHA,837
|
|
110
|
-
asteroid_odyssey/models/agents_profile_update_agent_profile_request.py,sha256=
|
|
110
|
+
asteroid_odyssey/models/agents_profile_update_agent_profile_request.py,sha256=BFFpF69B5EnvVQiRwX-yoOTFbFELnODAsQdUFqHZSso,8593
|
|
111
111
|
asteroid_odyssey/models/common_bad_request_error_body.py,sha256=cZQcZH6c2RmQleZe57-mfUsCKW74lGGtVMWbJFGc1ho,2889
|
|
112
112
|
asteroid_odyssey/models/common_error.py,sha256=to8zl1yPqcf8hRXEZeOrhuA_jWhmpaMmly5Y_Xl129k,2551
|
|
113
113
|
asteroid_odyssey/models/common_forbidden_error_body.py,sha256=9yADAujD_9eTW4BtZ7oYifmFCDTpAw-j1jEEJhwdAVs,2885
|
|
@@ -118,7 +118,7 @@ asteroid_odyssey/models/common_sort_direction.py,sha256=UBW99PM3QRGRRE7dB5OSBhmh
|
|
|
118
118
|
asteroid_odyssey/models/common_unauthorized_error_body.py,sha256=Ng62vZVuPWEkTvdnYimbItSKhUGT9G52ZOapMQ2O7Xg,2897
|
|
119
119
|
asteroid_odyssey/models/executions_list200_response.py,sha256=hbMbbsh7F8Cjl3S2hhRkcH4cvHCL24TVz8fwhGE9LfI,3288
|
|
120
120
|
asteroid_odyssey/models/version.py,sha256=Vjiri_a5CcDJ1lSziRqif5HuFpaxneVDLIB1r8SFIkE,707
|
|
121
|
-
asteroid_odyssey-1.6.
|
|
122
|
-
asteroid_odyssey-1.6.
|
|
123
|
-
asteroid_odyssey-1.6.
|
|
124
|
-
asteroid_odyssey-1.6.
|
|
121
|
+
asteroid_odyssey-1.6.38.dist-info/METADATA,sha256=gB2igjGaFuuo_hkfxOr4q0CUcKOrtGbGqPSI-PWADvk,1890
|
|
122
|
+
asteroid_odyssey-1.6.38.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
123
|
+
asteroid_odyssey-1.6.38.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
|
|
124
|
+
asteroid_odyssey-1.6.38.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|