test-wuying-agentbay-sdk 0.13.0-beta.20251212160413 ā 0.13.0-beta.20251212165248
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/docs/examples/common-features/advanced/archive-upload-mode-example/README.md +1 -1
- package/docs/examples/common-features/advanced/archive-upload-mode-example/archive-upload-mode-example.ts +1 -1
- package/docs/examples/common-features/basics/archive-upload-mode-example/README.md +1 -1
- package/docs/examples/common-features/basics/archive-upload-mode-example/main.ts +1 -1
- package/docs/examples/common-features/basics/filesystem-example/watch-directory-example.ts +1 -1
- package/package.json +1 -1
|
@@ -75,7 +75,7 @@ async function archiveUploadModeExample(): Promise<void> {
|
|
|
75
75
|
|
|
76
76
|
// Step 4: Create session with Archive mode context sync
|
|
77
77
|
console.log("\nšļø Step 4: Creating session with Archive mode context sync...");
|
|
78
|
-
const sessionParams
|
|
78
|
+
const sessionParams = {
|
|
79
79
|
labels: {
|
|
80
80
|
example: `archive-mode-${uniqueId}`,
|
|
81
81
|
type: "archive-upload-demo",
|
|
@@ -76,7 +76,7 @@ async function archiveUploadModeExample(): Promise<void> {
|
|
|
76
76
|
|
|
77
77
|
// Step 4: Create session with Archive mode context sync
|
|
78
78
|
console.log("\nšļø Step 4: Creating session with Archive mode context sync...");
|
|
79
|
-
const sessionParams
|
|
79
|
+
const sessionParams = {
|
|
80
80
|
labels: {
|
|
81
81
|
example: `archive-mode-${uniqueId}`,
|
|
82
82
|
type: "archive-upload-demo",
|
|
@@ -25,7 +25,7 @@ async function main(): Promise<void> {
|
|
|
25
25
|
console.log("ā
AgentBay client initialized");
|
|
26
26
|
|
|
27
27
|
// Create session with code_latest ImageId
|
|
28
|
-
const sessionParams
|
|
28
|
+
const sessionParams = { imageId: "code_latest" };
|
|
29
29
|
const sessionResult = await agentbay.create(sessionParams);
|
|
30
30
|
|
|
31
31
|
if (!sessionResult.success) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "test-wuying-agentbay-sdk",
|
|
3
|
-
"version": "0.13.0-beta.
|
|
3
|
+
"version": "0.13.0-beta.20251212165248",
|
|
4
4
|
"description": "TypeScript SDK for interacting with the Wuying AgentBay cloud runtime environment",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|