asteroid-odyssey 1.6.846 → 1.6.853
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.
- package/dist/index.d.mts +13 -0
- package/dist/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1872,6 +1872,7 @@ type AgentsGraphModelsTransitionsPropertiesSelectorProperties = {
|
|
|
1872
1872
|
type: 'selector';
|
|
1873
1873
|
name: string;
|
|
1874
1874
|
selector: string;
|
|
1875
|
+
selectors?: Array<string>;
|
|
1875
1876
|
};
|
|
1876
1877
|
type AgentsGraphModelsTransitionsTransition = {
|
|
1877
1878
|
id: CommonUuid;
|
|
@@ -1958,6 +1959,10 @@ type AgentsProfileAgentProfile = {
|
|
|
1958
1959
|
* Whether extra stealth mode is enabled
|
|
1959
1960
|
*/
|
|
1960
1961
|
extraStealth: boolean;
|
|
1962
|
+
/**
|
|
1963
|
+
* Whether to allow third-party cookies
|
|
1964
|
+
*/
|
|
1965
|
+
allow3rdCookies: boolean;
|
|
1961
1966
|
/**
|
|
1962
1967
|
* Whether to persist browser cache between sessions
|
|
1963
1968
|
*/
|
|
@@ -2208,6 +2213,10 @@ type AgentsProfileCreateAgentProfileRequest = {
|
|
|
2208
2213
|
* Whether to enable extra stealth mode
|
|
2209
2214
|
*/
|
|
2210
2215
|
extraStealth?: boolean;
|
|
2216
|
+
/**
|
|
2217
|
+
* Whether to allow third-party cookies
|
|
2218
|
+
*/
|
|
2219
|
+
allow3rdCookies?: boolean;
|
|
2211
2220
|
/**
|
|
2212
2221
|
* Whether to persist browser cache between sessions
|
|
2213
2222
|
*/
|
|
@@ -2490,6 +2499,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
|
|
|
2490
2499
|
* Whether to enable extra stealth mode
|
|
2491
2500
|
*/
|
|
2492
2501
|
extraStealth?: boolean;
|
|
2502
|
+
/**
|
|
2503
|
+
* Whether to allow third-party cookies
|
|
2504
|
+
*/
|
|
2505
|
+
allow3rdCookies?: boolean;
|
|
2493
2506
|
/**
|
|
2494
2507
|
* Whether to persist browser cache between sessions
|
|
2495
2508
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1872,6 +1872,7 @@ type AgentsGraphModelsTransitionsPropertiesSelectorProperties = {
|
|
|
1872
1872
|
type: 'selector';
|
|
1873
1873
|
name: string;
|
|
1874
1874
|
selector: string;
|
|
1875
|
+
selectors?: Array<string>;
|
|
1875
1876
|
};
|
|
1876
1877
|
type AgentsGraphModelsTransitionsTransition = {
|
|
1877
1878
|
id: CommonUuid;
|
|
@@ -1958,6 +1959,10 @@ type AgentsProfileAgentProfile = {
|
|
|
1958
1959
|
* Whether extra stealth mode is enabled
|
|
1959
1960
|
*/
|
|
1960
1961
|
extraStealth: boolean;
|
|
1962
|
+
/**
|
|
1963
|
+
* Whether to allow third-party cookies
|
|
1964
|
+
*/
|
|
1965
|
+
allow3rdCookies: boolean;
|
|
1961
1966
|
/**
|
|
1962
1967
|
* Whether to persist browser cache between sessions
|
|
1963
1968
|
*/
|
|
@@ -2208,6 +2213,10 @@ type AgentsProfileCreateAgentProfileRequest = {
|
|
|
2208
2213
|
* Whether to enable extra stealth mode
|
|
2209
2214
|
*/
|
|
2210
2215
|
extraStealth?: boolean;
|
|
2216
|
+
/**
|
|
2217
|
+
* Whether to allow third-party cookies
|
|
2218
|
+
*/
|
|
2219
|
+
allow3rdCookies?: boolean;
|
|
2211
2220
|
/**
|
|
2212
2221
|
* Whether to persist browser cache between sessions
|
|
2213
2222
|
*/
|
|
@@ -2490,6 +2499,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
|
|
|
2490
2499
|
* Whether to enable extra stealth mode
|
|
2491
2500
|
*/
|
|
2492
2501
|
extraStealth?: boolean;
|
|
2502
|
+
/**
|
|
2503
|
+
* Whether to allow third-party cookies
|
|
2504
|
+
*/
|
|
2505
|
+
allow3rdCookies?: boolean;
|
|
2493
2506
|
/**
|
|
2494
2507
|
* Whether to persist browser cache between sessions
|
|
2495
2508
|
*/
|