@rapidaai/react 1.1.51 → 1.1.52

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.
@@ -1,4 +1,4 @@
1
- export { ei as DeviceSelectorComponent } from '../device-selector-D2B4ipII.mjs';
1
+ export { ei as DeviceSelectorComponent } from '../device-selector-CJXc1lG8.mjs';
2
2
  import 'react';
3
3
  import 'google-protobuf';
4
4
  import 'google-protobuf/google/protobuf/any_pb';
@@ -1,4 +1,4 @@
1
- export { ei as DeviceSelectorComponent } from '../device-selector-D2B4ipII.js';
1
+ export { ei as DeviceSelectorComponent } from '../device-selector-CJXc1lG8.js';
2
2
  import 'react';
3
3
  import 'google-protobuf';
4
4
  import 'google-protobuf/google/protobuf/any_pb';
@@ -6562,9 +6562,11 @@ var require_common_pb = __commonJS({
6562
6562
  };
6563
6563
  proto.AssistantConversationAction.toObject = function(includeInstance, msg) {
6564
6564
  var f, obj = {
6565
- name: jspb.Message.getFieldWithDefault(msg, 1, ""),
6566
- action: jspb.Message.getFieldWithDefault(msg, 2, 0),
6567
- argsMap: (f = msg.getArgsMap()) ? f.toObject(includeInstance, proto.google.protobuf.Any.toObject) : []
6565
+ id: jspb.Message.getFieldWithDefault(msg, 1, ""),
6566
+ name: jspb.Message.getFieldWithDefault(msg, 2, ""),
6567
+ action: jspb.Message.getFieldWithDefault(msg, 3, 0),
6568
+ argsMap: (f = msg.getArgsMap()) ? f.toObject(includeInstance, proto.google.protobuf.Any.toObject) : [],
6569
+ time: (f = msg.getTime()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
6568
6570
  };
6569
6571
  if (includeInstance) {
6570
6572
  obj.$jspbMessageInstance = msg;
@@ -6589,21 +6591,33 @@ var require_common_pb = __commonJS({
6589
6591
  /** @type {string} */
6590
6592
  reader.readString()
6591
6593
  );
6592
- msg.setName(value);
6594
+ msg.setId(value);
6593
6595
  break;
6594
6596
  case 2:
6597
+ var value = (
6598
+ /** @type {string} */
6599
+ reader.readString()
6600
+ );
6601
+ msg.setName(value);
6602
+ break;
6603
+ case 3:
6595
6604
  var value = (
6596
6605
  /** @type {!proto.AssistantConversationAction.ActionType} */
6597
6606
  reader.readEnum()
6598
6607
  );
6599
6608
  msg.setAction(value);
6600
6609
  break;
6601
- case 3:
6610
+ case 4:
6602
6611
  var value = msg.getArgsMap();
6603
6612
  reader.readMessage(value, function(message, reader2) {
6604
6613
  jspb.Map.deserializeBinary(message, reader2, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.google.protobuf.Any.deserializeBinaryFromReader, "", new proto.google.protobuf.Any());
6605
6614
  });
6606
6615
  break;
6616
+ case 5:
6617
+ var value = new google_protobuf_timestamp_pb.Timestamp();
6618
+ reader.readMessage(value, google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
6619
+ msg.setTime(value);
6620
+ break;
6607
6621
  default:
6608
6622
  reader.skipField();
6609
6623
  break;
@@ -6618,57 +6632,81 @@ var require_common_pb = __commonJS({
6618
6632
  };
6619
6633
  proto.AssistantConversationAction.serializeBinaryToWriter = function(message, writer) {
6620
6634
  var f = void 0;
6621
- f = message.getName();
6635
+ f = message.getId();
6622
6636
  if (f.length > 0) {
6623
6637
  writer.writeString(
6624
6638
  1,
6625
6639
  f
6626
6640
  );
6627
6641
  }
6642
+ f = message.getName();
6643
+ if (f.length > 0) {
6644
+ writer.writeString(
6645
+ 2,
6646
+ f
6647
+ );
6648
+ }
6628
6649
  f = message.getAction();
6629
6650
  if (f !== 0) {
6630
6651
  writer.writeEnum(
6631
- 2,
6652
+ 3,
6632
6653
  f
6633
6654
  );
6634
6655
  }
6635
6656
  f = message.getArgsMap(true);
6636
6657
  if (f && f.getLength() > 0) {
6637
- f.serializeBinary(3, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.google.protobuf.Any.serializeBinaryToWriter);
6658
+ f.serializeBinary(4, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeMessage, proto.google.protobuf.Any.serializeBinaryToWriter);
6659
+ }
6660
+ f = message.getTime();
6661
+ if (f != null) {
6662
+ writer.writeMessage(
6663
+ 5,
6664
+ f,
6665
+ google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
6666
+ );
6638
6667
  }
6639
6668
  };
6640
6669
  proto.AssistantConversationAction.ActionType = {
6641
6670
  ACTION_UNSPECIFIED: 0,
6642
6671
  KNOWLEDGE_RETRIEVAL: 1,
6643
6672
  API_REQUEST: 2,
6644
- ENDPOINT_CALL: 3,
6645
- PUT_ON_HOLD: 4,
6646
- END_CONVERSATION: 5
6673
+ ENDPOINT_REQUEST: 3,
6674
+ END_CONVERSATION: 5,
6675
+ TRANSFER_CONVERSATION: 6
6647
6676
  };
6648
- proto.AssistantConversationAction.prototype.getName = function() {
6677
+ proto.AssistantConversationAction.prototype.getId = function() {
6649
6678
  return (
6650
6679
  /** @type {string} */
6651
6680
  jspb.Message.getFieldWithDefault(this, 1, "")
6652
6681
  );
6653
6682
  };
6654
- proto.AssistantConversationAction.prototype.setName = function(value) {
6683
+ proto.AssistantConversationAction.prototype.setId = function(value) {
6655
6684
  return jspb.Message.setProto3StringField(this, 1, value);
6656
6685
  };
6686
+ proto.AssistantConversationAction.prototype.getName = function() {
6687
+ return (
6688
+ /** @type {string} */
6689
+ jspb.Message.getFieldWithDefault(this, 2, "")
6690
+ );
6691
+ };
6692
+ proto.AssistantConversationAction.prototype.setName = function(value) {
6693
+ return jspb.Message.setProto3StringField(this, 2, value);
6694
+ };
6657
6695
  proto.AssistantConversationAction.prototype.getAction = function() {
6658
6696
  return (
6659
6697
  /** @type {!proto.AssistantConversationAction.ActionType} */
6660
- jspb.Message.getFieldWithDefault(this, 2, 0)
6698
+ jspb.Message.getFieldWithDefault(this, 3, 0)
6661
6699
  );
6662
6700
  };
6663
6701
  proto.AssistantConversationAction.prototype.setAction = function(value) {
6664
- return jspb.Message.setProto3EnumField(this, 2, value);
6702
+ return jspb.Message.setProto3EnumField(this, 3, value);
6665
6703
  };
6666
6704
  proto.AssistantConversationAction.prototype.getArgsMap = function(opt_noLazyCreate) {
6667
6705
  return (
6668
6706
  /** @type {!jspb.Map<string,!proto.google.protobuf.Any>} */
6669
6707
  jspb.Message.getMapField(
6670
6708
  this,
6671
- 3,
6709
+ 4,
6672
6710
  opt_noLazyCreate,
6673
6711
  proto.google.protobuf.Any
6674
6712
  )
@@ -6678,6 +6716,21 @@ var require_common_pb = __commonJS({
6678
6716
  this.getArgsMap().clear();
6679
6717
  return this;
6680
6718
  };
6719
+ proto.AssistantConversationAction.prototype.getTime = function() {
6720
+ return (
6721
+ /** @type{?proto.google.protobuf.Timestamp} */
6722
+ jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5)
6723
+ );
6724
+ };
6725
+ proto.AssistantConversationAction.prototype.setTime = function(value) {
6726
+ return jspb.Message.setWrapperField(this, 5, value);
6727
+ };
6728
+ proto.AssistantConversationAction.prototype.clearTime = function() {
6729
+ return this.setTime(void 0);
6730
+ };
6731
+ proto.AssistantConversationAction.prototype.hasTime = function() {
6732
+ return jspb.Message.getField(this, 5) != null;
6733
+ };
6681
6734
  if (jspb.Message.GENERATE_TO_OBJECT) {
6682
6735
  proto.AssistantConversationInterruption.prototype.toObject = function(opt_includeInstance) {
6683
6736
  return proto.AssistantConversationInterruption.toObject(opt_includeInstance, this);