Skip to content

Commit 2125791

Browse files
committed
feat: added combined sterio url
1 parent dde69ff commit 2125791

4 files changed

Lines changed: 37 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rapidaai/react",
3-
"version": "1.1.76",
3+
"version": "1.1.77",
44
"description": "An easy to use react client for building generative ai application using Rapida platform.",
55
"repository": {
66
"type": "git",

src/clients/protos/artifacts

src/clients/protos/common_pb.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,9 @@ export class AssistantConversationRecording extends jspb.Message {
963963
getUserrecordingurl(): string;
964964
setUserrecordingurl(value: string): void;
965965

966+
getConversationrecordingurl(): string;
967+
setConversationrecordingurl(value: string): void;
968+
966969
serializeBinary(): Uint8Array;
967970
toObject(includeInstance?: boolean): AssistantConversationRecording.AsObject;
968971
static toObject(includeInstance: boolean, msg: AssistantConversationRecording): AssistantConversationRecording.AsObject;
@@ -978,6 +981,7 @@ export namespace AssistantConversationRecording {
978981
id: string,
979982
assistantrecordingurl: string,
980983
userrecordingurl: string,
984+
conversationrecordingurl: string,
981985
}
982986
}
983987

src/clients/protos/common_pb.js

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7563,7 +7563,8 @@ proto.AssistantConversationRecording.toObject = function(includeInstance, msg) {
75637563
var f, obj = {
75647564
id: jspb.Message.getFieldWithDefault(msg, 1, "0"),
75657565
assistantrecordingurl: jspb.Message.getFieldWithDefault(msg, 2, ""),
7566-
userrecordingurl: jspb.Message.getFieldWithDefault(msg, 3, "")
7566+
userrecordingurl: jspb.Message.getFieldWithDefault(msg, 3, ""),
7567+
conversationrecordingurl: jspb.Message.getFieldWithDefault(msg, 4, "")
75677568
};
75687569

75697570
if (includeInstance) {
@@ -7612,6 +7613,10 @@ proto.AssistantConversationRecording.deserializeBinaryFromReader = function(msg,
76127613
var value = /** @type {string} */ (reader.readString());
76137614
msg.setUserrecordingurl(value);
76147615
break;
7616+
case 4:
7617+
var value = /** @type {string} */ (reader.readString());
7618+
msg.setConversationrecordingurl(value);
7619+
break;
76157620
default:
76167621
reader.skipField();
76177622
break;
@@ -7662,6 +7667,13 @@ proto.AssistantConversationRecording.serializeBinaryToWriter = function(message,
76627667
f
76637668
);
76647669
}
7670+
f = message.getConversationrecordingurl();
7671+
if (f.length > 0) {
7672+
writer.writeString(
7673+
4,
7674+
f
7675+
);
7676+
}
76657677
};
76667678

76677679

@@ -7719,6 +7731,24 @@ proto.AssistantConversationRecording.prototype.setUserrecordingurl = function(va
77197731
};
77207732

77217733

7734+
/**
7735+
* optional string conversationRecordingUrl = 4;
7736+
* @return {string}
7737+
*/
7738+
proto.AssistantConversationRecording.prototype.getConversationrecordingurl = function() {
7739+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
7740+
};
7741+
7742+
7743+
/**
7744+
* @param {string} value
7745+
* @return {!proto.AssistantConversationRecording} returns this
7746+
*/
7747+
proto.AssistantConversationRecording.prototype.setConversationrecordingurl = function(value) {
7748+
return jspb.Message.setProto3StringField(this, 4, value);
7749+
};
7750+
7751+
77227752

77237753

77247754

0 commit comments

Comments
 (0)