asteroid-odyssey 1.3.8 → 1.3.9
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 +24 -0
- package/dist/index.d.ts +24 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -639,6 +639,14 @@ type AgentProfile = {
|
|
|
639
639
|
* The last update time of the agent profile
|
|
640
640
|
*/
|
|
641
641
|
updated_at: string;
|
|
642
|
+
/**
|
|
643
|
+
* Whether to enable tracing snapshots for the profile
|
|
644
|
+
*/
|
|
645
|
+
tracing_snapshots: boolean;
|
|
646
|
+
/**
|
|
647
|
+
* Whether to enable extra stealth for the profile
|
|
648
|
+
*/
|
|
649
|
+
extra_stealth: boolean;
|
|
642
650
|
};
|
|
643
651
|
type CreateAgentProfileRequest = {
|
|
644
652
|
/**
|
|
@@ -671,6 +679,14 @@ type CreateAgentProfileRequest = {
|
|
|
671
679
|
* Optional list of cookies to create with the profile
|
|
672
680
|
*/
|
|
673
681
|
cookies: Array<Cookie>;
|
|
682
|
+
/**
|
|
683
|
+
* Whether to enable tracing snapshots for the profile
|
|
684
|
+
*/
|
|
685
|
+
tracing_snapshots?: boolean;
|
|
686
|
+
/**
|
|
687
|
+
* Whether to enable extra stealth for the profile
|
|
688
|
+
*/
|
|
689
|
+
extra_stealth?: boolean;
|
|
674
690
|
};
|
|
675
691
|
type UpdateAgentProfileRequest = {
|
|
676
692
|
/**
|
|
@@ -707,6 +723,14 @@ type UpdateAgentProfileRequest = {
|
|
|
707
723
|
* List of cookie IDs to delete from the profile
|
|
708
724
|
*/
|
|
709
725
|
cookies_to_delete?: Array<string>;
|
|
726
|
+
/**
|
|
727
|
+
* Whether to enable tracing snapshots for the profile
|
|
728
|
+
*/
|
|
729
|
+
tracing_snapshots?: boolean;
|
|
730
|
+
/**
|
|
731
|
+
* Whether to enable extra stealth for the profile
|
|
732
|
+
*/
|
|
733
|
+
extra_stealth?: boolean;
|
|
710
734
|
};
|
|
711
735
|
/**
|
|
712
736
|
* Two-letter country code for proxy location
|
package/dist/index.d.ts
CHANGED
|
@@ -639,6 +639,14 @@ type AgentProfile = {
|
|
|
639
639
|
* The last update time of the agent profile
|
|
640
640
|
*/
|
|
641
641
|
updated_at: string;
|
|
642
|
+
/**
|
|
643
|
+
* Whether to enable tracing snapshots for the profile
|
|
644
|
+
*/
|
|
645
|
+
tracing_snapshots: boolean;
|
|
646
|
+
/**
|
|
647
|
+
* Whether to enable extra stealth for the profile
|
|
648
|
+
*/
|
|
649
|
+
extra_stealth: boolean;
|
|
642
650
|
};
|
|
643
651
|
type CreateAgentProfileRequest = {
|
|
644
652
|
/**
|
|
@@ -671,6 +679,14 @@ type CreateAgentProfileRequest = {
|
|
|
671
679
|
* Optional list of cookies to create with the profile
|
|
672
680
|
*/
|
|
673
681
|
cookies: Array<Cookie>;
|
|
682
|
+
/**
|
|
683
|
+
* Whether to enable tracing snapshots for the profile
|
|
684
|
+
*/
|
|
685
|
+
tracing_snapshots?: boolean;
|
|
686
|
+
/**
|
|
687
|
+
* Whether to enable extra stealth for the profile
|
|
688
|
+
*/
|
|
689
|
+
extra_stealth?: boolean;
|
|
674
690
|
};
|
|
675
691
|
type UpdateAgentProfileRequest = {
|
|
676
692
|
/**
|
|
@@ -707,6 +723,14 @@ type UpdateAgentProfileRequest = {
|
|
|
707
723
|
* List of cookie IDs to delete from the profile
|
|
708
724
|
*/
|
|
709
725
|
cookies_to_delete?: Array<string>;
|
|
726
|
+
/**
|
|
727
|
+
* Whether to enable tracing snapshots for the profile
|
|
728
|
+
*/
|
|
729
|
+
tracing_snapshots?: boolean;
|
|
730
|
+
/**
|
|
731
|
+
* Whether to enable extra stealth for the profile
|
|
732
|
+
*/
|
|
733
|
+
extra_stealth?: boolean;
|
|
710
734
|
};
|
|
711
735
|
/**
|
|
712
736
|
* Two-letter country code for proxy location
|