@ray-js/robot-map-sdk 0.0.15-beta.6 → 0.0.15-beta.7

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.
Files changed (48) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/dist/index.rjs.js +1 -1
  3. package/dist-app/assets/{index-D9VwUOlq.js → index-D8U4Ooke.js} +1 -1
  4. package/dist-app/index.html +1 -1
  5. package/dist-docs/404.html +2 -2
  6. package/dist-docs/assets/{app.dhfn8YVD.js → app.aFlmc9Oy.js} +1 -1
  7. package/dist-docs/assets/chunks/@localSearchIndexroot.Dm9iKECq.js +1 -0
  8. package/dist-docs/assets/chunks/{BitmapFont._75YFVng.js → BitmapFont.C0Zuki5a.js} +1 -1
  9. package/dist-docs/assets/chunks/{BufferResource.BXq5Gjpk.js → BufferResource.Dsm8jIyg.js} +1 -1
  10. package/dist-docs/assets/chunks/{CanvasRenderer.5dXabo6X.js → CanvasRenderer.DpS48bUa.js} +1 -1
  11. package/dist-docs/assets/chunks/{RenderTargetSystem.BoG_2vTc.js → RenderTargetSystem.CoRBUPGr.js} +1 -1
  12. package/dist-docs/assets/chunks/{VPLocalSearchBox.Dfa0MAuy.js → VPLocalSearchBox.BhQmOITR.js} +1 -1
  13. package/dist-docs/assets/chunks/{WebGLRenderer.O2k8hm1U.js → WebGLRenderer.DnV7YTtE.js} +1 -1
  14. package/dist-docs/assets/chunks/{WebGPURenderer.uCTDNuVR.js → WebGPURenderer.CrC_mIca.js} +1 -1
  15. package/dist-docs/assets/chunks/{browserAll.ze3NUo_4.js → browserAll.BseyGggY.js} +1 -1
  16. package/dist-docs/assets/chunks/{index.lc4NZPGp.js → index.63u6ixbT.js} +4 -4
  17. package/dist-docs/assets/chunks/{theme.CEEzv3xD.js → theme.CnUzYoyt.js} +3 -3
  18. package/dist-docs/assets/chunks/{webworkerAll.HqNVw7yG.js → webworkerAll.CJ-vfJb5.js} +1 -1
  19. package/dist-docs/assets/{guide_getting-started.md.CJ93RQLU.js → guide_getting-started.md.BZorxbvR.js} +2 -2
  20. package/dist-docs/assets/guide_getting-started.md.BZorxbvR.lean.js +1 -0
  21. package/dist-docs/assets/{reference_methods.md.BPWJ_jw6.js → reference_methods.md.CxMQMj53.js} +3 -2
  22. package/dist-docs/assets/{reference_methods.md.BPWJ_jw6.lean.js → reference_methods.md.CxMQMj53.lean.js} +1 -1
  23. package/dist-docs/guide/advanced-usage.html +3 -3
  24. package/dist-docs/guide/concepts.html +3 -3
  25. package/dist-docs/guide/getting-started.html +5 -5
  26. package/dist-docs/guide/mcp.html +3 -3
  27. package/dist-docs/hashmap.json +1 -1
  28. package/dist-docs/index.html +3 -3
  29. package/dist-docs/plans/2026-03-04-detected-objects-visibility-design.html +3 -3
  30. package/dist-docs/plans/2026-03-04-show-detected-objects-implementation-plan.html +3 -3
  31. package/dist-docs/plans/2026-03-10-simulator-debug-design.html +3 -3
  32. package/dist-docs/plans/2026-03-10-simulator-events-console-design.html +3 -3
  33. package/dist-docs/plans/2026-03-10-simulator-events-console-implementation-plan.html +3 -3
  34. package/dist-docs/plans/2026-03-10-simulator-runtime-controls-design.html +3 -3
  35. package/dist-docs/plans/2026-03-10-simulator-runtime-controls-implementation-plan.html +3 -3
  36. package/dist-docs/plans/2026-03-10-testing-rollout-next-steps-plan.html +3 -3
  37. package/dist-docs/plans/2026-03-11-simulator-logger-dump-implementation-plan.html +3 -3
  38. package/dist-docs/reference/callbacks.html +3 -3
  39. package/dist-docs/reference/config.html +3 -3
  40. package/dist-docs/reference/data.html +3 -3
  41. package/dist-docs/reference/methods.html +6 -5
  42. package/dist-docs/reference/runtime.html +3 -3
  43. package/dist-docs/reference/types.html +3 -3
  44. package/dist-docs/reference/utils.html +3 -3
  45. package/dist-docs/simulator/index.html +3 -3
  46. package/package.json +1 -1
  47. package/dist-docs/assets/chunks/@localSearchIndexroot.AU8AFPb8.js +0 -1
  48. package/dist-docs/assets/guide_getting-started.md.CJ93RQLU.lean.js +0 -1
package/dist/index.d.ts CHANGED
@@ -1457,6 +1457,7 @@ export declare interface MapApi {
1457
1457
  * @param data.virtualWalls - 可选的虚拟墙数组
1458
1458
  * @param data.detectedObjects - 可选的 AI 物体检测数据数组
1459
1459
  * @param data.furnitures - 可选的家具数据数组
1460
+ * @param data.carpets - 可选的自定义地毯数组
1460
1461
  * @param runtime - 可选的运行时配置 (如是否显示机器人、充电桩等状态)
1461
1462
  * @param options - 截图配置选项
1462
1463
  * @param options.backgroundColor - 指定生成截图时的背景颜色。若不指定,将默认使用 `global.config.backgroundColor`。
@@ -1472,6 +1473,7 @@ export declare interface MapApi {
1472
1473
  virtualWalls?: VirtualWallParam[];
1473
1474
  detectedObjects?: DetectedObjectParam[];
1474
1475
  furnitures?: FurnitureParam[];
1476
+ carpets?: CustomCarpetParam[];
1475
1477
  }, runtime?: DeepPartialRuntimeConfig, options?: {
1476
1478
  backgroundColor?: ColorSource;
1477
1479
  }): Promise<string>;