@seamapi/http 0.32.0 → 0.33.0

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/connect.cjs CHANGED
@@ -2517,6 +2517,22 @@ var SeamHttpDevicesSimulate = class _SeamHttpDevicesSimulate {
2517
2517
  const clientSessions = SeamHttpClientSessions.fromClient(this.client);
2518
2518
  await clientSessions.get();
2519
2519
  }
2520
+ connect(body) {
2521
+ return new SeamHttpRequest(this, {
2522
+ path: "/devices/simulate/connect",
2523
+ method: "post",
2524
+ body,
2525
+ responseKey: void 0
2526
+ });
2527
+ }
2528
+ disconnect(body) {
2529
+ return new SeamHttpRequest(this, {
2530
+ path: "/devices/simulate/disconnect",
2531
+ method: "post",
2532
+ body,
2533
+ responseKey: void 0
2534
+ });
2535
+ }
2520
2536
  remove(body) {
2521
2537
  return new SeamHttpRequest(this, {
2522
2538
  path: "/devices/simulate/remove",