@stinkycomputing/sesame-api-client 1.4.1-alpha.11 → 1.4.1-alpha.12
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.browser.mjs +3 -3
- package/dist/index.browser.mjs.map +2 -2
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +2 -2
- package/dist/sesame-api-client.d.ts +1 -0
- package/dist/sesame-api-client.d.ts.map +1 -1
- package/dist/status-api.d.ts +0 -1
- package/dist/status-api.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -22388,9 +22388,6 @@ var StatusApi = class {
|
|
|
22388
22388
|
async getIODevices() {
|
|
22389
22389
|
return this.rpc.service.requestIODeviceList(new sesame.v1.common.Empty());
|
|
22390
22390
|
}
|
|
22391
|
-
async requestKeyframe(outputId) {
|
|
22392
|
-
await this.rpc.service.requestKeyframe({ id: outputId });
|
|
22393
|
-
}
|
|
22394
22391
|
};
|
|
22395
22392
|
|
|
22396
22393
|
// src/recorder-api.ts
|
|
@@ -22621,6 +22618,9 @@ var SesameClient = class extends import_events3.EventEmitter {
|
|
|
22621
22618
|
getService() {
|
|
22622
22619
|
return this.rpc;
|
|
22623
22620
|
}
|
|
22621
|
+
async requestKeyframe(outputId) {
|
|
22622
|
+
await this.rpc.service.requestKeyframe({ id: outputId });
|
|
22623
|
+
}
|
|
22624
22624
|
async execute(cl) {
|
|
22625
22625
|
cl.filterCreatedAndDestroyedSources();
|
|
22626
22626
|
if (cl.getCommandListMsg().commandList.length > 0) {
|