test-wuying-agentbay-sdk 0.13.0-beta.20251222164326 → 0.13.0-beta.20251222170911
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -6836,7 +6836,7 @@ interface CreateSessionParamsConfig {
|
|
|
6836
6836
|
isVpc?: boolean;
|
|
6837
6837
|
/** Policy id to apply when creating the session. */
|
|
6838
6838
|
policyId?: string;
|
|
6839
|
-
/** Whether to enable browser recording for the session. Defaults to
|
|
6839
|
+
/** Whether to enable browser recording for the session. Defaults to true. */
|
|
6840
6840
|
enableBrowserReplay?: boolean;
|
|
6841
6841
|
/** Extra configuration settings for different session types (e.g., mobile) */
|
|
6842
6842
|
extraConfigs?: ExtraConfigs;
|
|
@@ -6863,7 +6863,7 @@ declare class CreateSessionParams implements CreateSessionParamsConfig {
|
|
|
6863
6863
|
isVpc: boolean;
|
|
6864
6864
|
/** Policy id to apply when creating the session. */
|
|
6865
6865
|
policyId?: string;
|
|
6866
|
-
/** Whether to enable browser recording for the session. Defaults to
|
|
6866
|
+
/** Whether to enable browser recording for the session. Defaults to true. */
|
|
6867
6867
|
enableBrowserReplay?: boolean;
|
|
6868
6868
|
/** Extra configuration settings for different session types (e.g., mobile) */
|
|
6869
6869
|
extraConfigs?: ExtraConfigs;
|
package/dist/index.d.ts
CHANGED
|
@@ -6836,7 +6836,7 @@ interface CreateSessionParamsConfig {
|
|
|
6836
6836
|
isVpc?: boolean;
|
|
6837
6837
|
/** Policy id to apply when creating the session. */
|
|
6838
6838
|
policyId?: string;
|
|
6839
|
-
/** Whether to enable browser recording for the session. Defaults to
|
|
6839
|
+
/** Whether to enable browser recording for the session. Defaults to true. */
|
|
6840
6840
|
enableBrowserReplay?: boolean;
|
|
6841
6841
|
/** Extra configuration settings for different session types (e.g., mobile) */
|
|
6842
6842
|
extraConfigs?: ExtraConfigs;
|
|
@@ -6863,7 +6863,7 @@ declare class CreateSessionParams implements CreateSessionParamsConfig {
|
|
|
6863
6863
|
isVpc: boolean;
|
|
6864
6864
|
/** Policy id to apply when creating the session. */
|
|
6865
6865
|
policyId?: string;
|
|
6866
|
-
/** Whether to enable browser recording for the session. Defaults to
|
|
6866
|
+
/** Whether to enable browser recording for the session. Defaults to true. */
|
|
6867
6867
|
enableBrowserReplay?: boolean;
|
|
6868
6868
|
/** Extra configuration settings for different session types (e.g., mobile) */
|
|
6869
6869
|
extraConfigs?: ExtraConfigs;
|
package/dist/index.mjs
CHANGED
|
@@ -18978,7 +18978,7 @@ var _CreateSessionParams = class _CreateSessionParams {
|
|
|
18978
18978
|
this.labels = {};
|
|
18979
18979
|
this.contextSync = [];
|
|
18980
18980
|
this.isVpc = false;
|
|
18981
|
-
this.enableBrowserReplay =
|
|
18981
|
+
this.enableBrowserReplay = true;
|
|
18982
18982
|
}
|
|
18983
18983
|
/**
|
|
18984
18984
|
* WithLabels sets the labels for the session parameters and returns the updated parameters.
|