@supernova-studio/client 1.28.0 → 1.29.1
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -17399,6 +17399,14 @@ var FrontendFeatureRoomYDoc = class {
|
|
|
17399
17399
|
const doc = new FeatureRoomBaseYDoc(this.yDoc);
|
|
17400
17400
|
return doc.getAgentResponseTrackers();
|
|
17401
17401
|
}
|
|
17402
|
+
updateAgentResponseTracker(tracker) {
|
|
17403
|
+
const doc = new FeatureRoomBaseYDoc(this.yDoc);
|
|
17404
|
+
doc.updateAgentResponseTrackers([tracker]);
|
|
17405
|
+
}
|
|
17406
|
+
deleteAgentResponseTrackers(id) {
|
|
17407
|
+
const doc = new FeatureRoomBaseYDoc(this.yDoc);
|
|
17408
|
+
doc.deleteAgentResponseTrackers([id]);
|
|
17409
|
+
}
|
|
17402
17410
|
//
|
|
17403
17411
|
// Utility Methods
|
|
17404
17412
|
//
|