@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.d.mts
CHANGED
|
@@ -146356,6 +146356,8 @@ declare class FrontendFeatureRoomYDoc {
|
|
|
146356
146356
|
getArtifacts(): DTOFeatureArtifact[];
|
|
146357
146357
|
getIterationTags(): DTOFeatureIterationTag[];
|
|
146358
146358
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146359
|
+
updateAgentResponseTracker(tracker: DTOFeatureAgentResponseTracker): void;
|
|
146360
|
+
deleteAgentResponseTrackers(id: string): void;
|
|
146359
146361
|
isLoaded(): boolean;
|
|
146360
146362
|
getExecutedTransactionIds(): string[];
|
|
146361
146363
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -146356,6 +146356,8 @@ declare class FrontendFeatureRoomYDoc {
|
|
|
146356
146356
|
getArtifacts(): DTOFeatureArtifact[];
|
|
146357
146357
|
getIterationTags(): DTOFeatureIterationTag[];
|
|
146358
146358
|
getAgentResponseTrackers(): DTOFeatureAgentResponseTracker[];
|
|
146359
|
+
updateAgentResponseTracker(tracker: DTOFeatureAgentResponseTracker): void;
|
|
146360
|
+
deleteAgentResponseTrackers(id: string): void;
|
|
146359
146361
|
isLoaded(): boolean;
|
|
146360
146362
|
getExecutedTransactionIds(): string[];
|
|
146361
146363
|
}
|
package/dist/index.js
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
|
//
|