@seamapi/http 1.0.0-rc.2 → 1.0.0-rc.3
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 +16 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -1
- package/lib/seam/connect/routes/devices-simulate.d.ts +8 -0
- package/lib/seam/connect/routes/devices-simulate.js +16 -0
- package/lib/seam/connect/routes/devices-simulate.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/devices-simulate.ts +38 -0
- package/src/lib/version.ts +1 -1
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",
|