@rapidaai/react 1.1.43 → 1.1.45

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.
@@ -36,6 +36,7 @@ var require_common_pb = __commonJS({
36
36
  goog.exportSymbol("proto.AssistantConversationMessageTextContent", null, global);
37
37
  goog.exportSymbol("proto.AssistantConversationPhoneCallTransferAction", null, global);
38
38
  goog.exportSymbol("proto.AssistantConversationRecording", null, global);
39
+ goog.exportSymbol("proto.AssistantConversationTelephonyEvent", null, global);
39
40
  goog.exportSymbol("proto.AssistantConversationUserMessage", null, global);
40
41
  goog.exportSymbol("proto.AssistantConversationUserMessage.MessageCase", null, global);
41
42
  goog.exportSymbol("proto.AssistantConverstationApiRequestAction", null, global);
@@ -251,6 +252,13 @@ var require_common_pb = __commonJS({
251
252
  if (goog.DEBUG && !COMPILED) {
252
253
  proto.AssistantConversationRecording.displayName = "proto.AssistantConversationRecording";
253
254
  }
255
+ proto.AssistantConversationTelephonyEvent = function(opt_data) {
256
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
257
+ };
258
+ goog.inherits(proto.AssistantConversationTelephonyEvent, jspb.Message);
259
+ if (goog.DEBUG && !COMPILED) {
260
+ proto.AssistantConversationTelephonyEvent.displayName = "proto.AssistantConversationTelephonyEvent";
261
+ }
254
262
  proto.AssistantConversation = function(opt_data) {
255
263
  jspb.Message.initialize(this, opt_data, 0, -1, proto.AssistantConversation.repeatedFields_, null);
256
264
  };
@@ -4308,7 +4316,230 @@ var require_common_pb = __commonJS({
4308
4316
  proto.AssistantConversationRecording.prototype.setRecordingurl = function(value) {
4309
4317
  return jspb.Message.setProto3StringField(this, 1, value);
4310
4318
  };
4311
- proto.AssistantConversation.repeatedFields_ = [13, 28, 30, 32, 31, 33, 35];
4319
+ if (jspb.Message.GENERATE_TO_OBJECT) {
4320
+ proto.AssistantConversationTelephonyEvent.prototype.toObject = function(opt_includeInstance) {
4321
+ return proto.AssistantConversationTelephonyEvent.toObject(opt_includeInstance, this);
4322
+ };
4323
+ proto.AssistantConversationTelephonyEvent.toObject = function(includeInstance, msg) {
4324
+ var f, obj = {
4325
+ id: jspb.Message.getFieldWithDefault(msg, 1, "0"),
4326
+ assistantconversationid: jspb.Message.getFieldWithDefault(msg, 2, "0"),
4327
+ provider: jspb.Message.getFieldWithDefault(msg, 3, ""),
4328
+ eventtype: jspb.Message.getFieldWithDefault(msg, 4, ""),
4329
+ payload: (f = msg.getPayload()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
4330
+ createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
4331
+ updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
4332
+ };
4333
+ if (includeInstance) {
4334
+ obj.$jspbMessageInstance = msg;
4335
+ }
4336
+ return obj;
4337
+ };
4338
+ }
4339
+ proto.AssistantConversationTelephonyEvent.deserializeBinary = function(bytes) {
4340
+ var reader = new jspb.BinaryReader(bytes);
4341
+ var msg = new proto.AssistantConversationTelephonyEvent();
4342
+ return proto.AssistantConversationTelephonyEvent.deserializeBinaryFromReader(msg, reader);
4343
+ };
4344
+ proto.AssistantConversationTelephonyEvent.deserializeBinaryFromReader = function(msg, reader) {
4345
+ while (reader.nextField()) {
4346
+ if (reader.isEndGroup()) {
4347
+ break;
4348
+ }
4349
+ var field = reader.getFieldNumber();
4350
+ switch (field) {
4351
+ case 1:
4352
+ var value = (
4353
+ /** @type {string} */
4354
+ reader.readUint64String()
4355
+ );
4356
+ msg.setId(value);
4357
+ break;
4358
+ case 2:
4359
+ var value = (
4360
+ /** @type {string} */
4361
+ reader.readUint64String()
4362
+ );
4363
+ msg.setAssistantconversationid(value);
4364
+ break;
4365
+ case 3:
4366
+ var value = (
4367
+ /** @type {string} */
4368
+ reader.readString()
4369
+ );
4370
+ msg.setProvider(value);
4371
+ break;
4372
+ case 4:
4373
+ var value = (
4374
+ /** @type {string} */
4375
+ reader.readString()
4376
+ );
4377
+ msg.setEventtype(value);
4378
+ break;
4379
+ case 5:
4380
+ var value = new google_protobuf_struct_pb.Struct();
4381
+ reader.readMessage(value, google_protobuf_struct_pb.Struct.deserializeBinaryFromReader);
4382
+ msg.setPayload(value);
4383
+ break;
4384
+ case 6:
4385
+ var value = new google_protobuf_timestamp_pb.Timestamp();
4386
+ reader.readMessage(value, google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
4387
+ msg.setCreateddate(value);
4388
+ break;
4389
+ case 7:
4390
+ var value = new google_protobuf_timestamp_pb.Timestamp();
4391
+ reader.readMessage(value, google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
4392
+ msg.setUpdateddate(value);
4393
+ break;
4394
+ default:
4395
+ reader.skipField();
4396
+ break;
4397
+ }
4398
+ }
4399
+ return msg;
4400
+ };
4401
+ proto.AssistantConversationTelephonyEvent.prototype.serializeBinary = function() {
4402
+ var writer = new jspb.BinaryWriter();
4403
+ proto.AssistantConversationTelephonyEvent.serializeBinaryToWriter(this, writer);
4404
+ return writer.getResultBuffer();
4405
+ };
4406
+ proto.AssistantConversationTelephonyEvent.serializeBinaryToWriter = function(message, writer) {
4407
+ var f = void 0;
4408
+ f = message.getId();
4409
+ if (parseInt(f, 10) !== 0) {
4410
+ writer.writeUint64String(
4411
+ 1,
4412
+ f
4413
+ );
4414
+ }
4415
+ f = message.getAssistantconversationid();
4416
+ if (parseInt(f, 10) !== 0) {
4417
+ writer.writeUint64String(
4418
+ 2,
4419
+ f
4420
+ );
4421
+ }
4422
+ f = message.getProvider();
4423
+ if (f.length > 0) {
4424
+ writer.writeString(
4425
+ 3,
4426
+ f
4427
+ );
4428
+ }
4429
+ f = message.getEventtype();
4430
+ if (f.length > 0) {
4431
+ writer.writeString(
4432
+ 4,
4433
+ f
4434
+ );
4435
+ }
4436
+ f = message.getPayload();
4437
+ if (f != null) {
4438
+ writer.writeMessage(
4439
+ 5,
4440
+ f,
4441
+ google_protobuf_struct_pb.Struct.serializeBinaryToWriter
4442
+ );
4443
+ }
4444
+ f = message.getCreateddate();
4445
+ if (f != null) {
4446
+ writer.writeMessage(
4447
+ 6,
4448
+ f,
4449
+ google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
4450
+ );
4451
+ }
4452
+ f = message.getUpdateddate();
4453
+ if (f != null) {
4454
+ writer.writeMessage(
4455
+ 7,
4456
+ f,
4457
+ google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
4458
+ );
4459
+ }
4460
+ };
4461
+ proto.AssistantConversationTelephonyEvent.prototype.getId = function() {
4462
+ return (
4463
+ /** @type {string} */
4464
+ jspb.Message.getFieldWithDefault(this, 1, "0")
4465
+ );
4466
+ };
4467
+ proto.AssistantConversationTelephonyEvent.prototype.setId = function(value) {
4468
+ return jspb.Message.setProto3StringIntField(this, 1, value);
4469
+ };
4470
+ proto.AssistantConversationTelephonyEvent.prototype.getAssistantconversationid = function() {
4471
+ return (
4472
+ /** @type {string} */
4473
+ jspb.Message.getFieldWithDefault(this, 2, "0")
4474
+ );
4475
+ };
4476
+ proto.AssistantConversationTelephonyEvent.prototype.setAssistantconversationid = function(value) {
4477
+ return jspb.Message.setProto3StringIntField(this, 2, value);
4478
+ };
4479
+ proto.AssistantConversationTelephonyEvent.prototype.getProvider = function() {
4480
+ return (
4481
+ /** @type {string} */
4482
+ jspb.Message.getFieldWithDefault(this, 3, "")
4483
+ );
4484
+ };
4485
+ proto.AssistantConversationTelephonyEvent.prototype.setProvider = function(value) {
4486
+ return jspb.Message.setProto3StringField(this, 3, value);
4487
+ };
4488
+ proto.AssistantConversationTelephonyEvent.prototype.getEventtype = function() {
4489
+ return (
4490
+ /** @type {string} */
4491
+ jspb.Message.getFieldWithDefault(this, 4, "")
4492
+ );
4493
+ };
4494
+ proto.AssistantConversationTelephonyEvent.prototype.setEventtype = function(value) {
4495
+ return jspb.Message.setProto3StringField(this, 4, value);
4496
+ };
4497
+ proto.AssistantConversationTelephonyEvent.prototype.getPayload = function() {
4498
+ return (
4499
+ /** @type{?proto.google.protobuf.Struct} */
4500
+ jspb.Message.getWrapperField(this, google_protobuf_struct_pb.Struct, 5)
4501
+ );
4502
+ };
4503
+ proto.AssistantConversationTelephonyEvent.prototype.setPayload = function(value) {
4504
+ return jspb.Message.setWrapperField(this, 5, value);
4505
+ };
4506
+ proto.AssistantConversationTelephonyEvent.prototype.clearPayload = function() {
4507
+ return this.setPayload(void 0);
4508
+ };
4509
+ proto.AssistantConversationTelephonyEvent.prototype.hasPayload = function() {
4510
+ return jspb.Message.getField(this, 5) != null;
4511
+ };
4512
+ proto.AssistantConversationTelephonyEvent.prototype.getCreateddate = function() {
4513
+ return (
4514
+ /** @type{?proto.google.protobuf.Timestamp} */
4515
+ jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6)
4516
+ );
4517
+ };
4518
+ proto.AssistantConversationTelephonyEvent.prototype.setCreateddate = function(value) {
4519
+ return jspb.Message.setWrapperField(this, 6, value);
4520
+ };
4521
+ proto.AssistantConversationTelephonyEvent.prototype.clearCreateddate = function() {
4522
+ return this.setCreateddate(void 0);
4523
+ };
4524
+ proto.AssistantConversationTelephonyEvent.prototype.hasCreateddate = function() {
4525
+ return jspb.Message.getField(this, 6) != null;
4526
+ };
4527
+ proto.AssistantConversationTelephonyEvent.prototype.getUpdateddate = function() {
4528
+ return (
4529
+ /** @type{?proto.google.protobuf.Timestamp} */
4530
+ jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7)
4531
+ );
4532
+ };
4533
+ proto.AssistantConversationTelephonyEvent.prototype.setUpdateddate = function(value) {
4534
+ return jspb.Message.setWrapperField(this, 7, value);
4535
+ };
4536
+ proto.AssistantConversationTelephonyEvent.prototype.clearUpdateddate = function() {
4537
+ return this.setUpdateddate(void 0);
4538
+ };
4539
+ proto.AssistantConversationTelephonyEvent.prototype.hasUpdateddate = function() {
4540
+ return jspb.Message.getField(this, 7) != null;
4541
+ };
4542
+ proto.AssistantConversation.repeatedFields_ = [13, 28, 30, 32, 31, 33, 35, 36];
4312
4543
  if (jspb.Message.GENERATE_TO_OBJECT) {
4313
4544
  proto.AssistantConversation.prototype.toObject = function(opt_includeInstance) {
4314
4545
  return proto.AssistantConversation.toObject(opt_includeInstance, this);
@@ -4365,6 +4596,11 @@ var require_common_pb = __commonJS({
4365
4596
  msg.getRecordingsList(),
4366
4597
  proto.AssistantConversationRecording.toObject,
4367
4598
  includeInstance
4599
+ ),
4600
+ telephonyeventsList: jspb.Message.toObjectList(
4601
+ msg.getTelephonyeventsList(),
4602
+ proto.AssistantConversationTelephonyEvent.toObject,
4603
+ includeInstance
4368
4604
  )
4369
4605
  };
4370
4606
  if (includeInstance) {
@@ -4526,6 +4762,11 @@ var require_common_pb = __commonJS({
4526
4762
  reader.readMessage(value, proto.AssistantConversationRecording.deserializeBinaryFromReader);
4527
4763
  msg.addRecordings(value);
4528
4764
  break;
4765
+ case 36:
4766
+ var value = new proto.AssistantConversationTelephonyEvent();
4767
+ reader.readMessage(value, proto.AssistantConversationTelephonyEvent.deserializeBinaryFromReader);
4768
+ msg.addTelephonyevents(value);
4769
+ break;
4529
4770
  default:
4530
4771
  reader.skipField();
4531
4772
  break;
@@ -4711,6 +4952,14 @@ var require_common_pb = __commonJS({
4711
4952
  proto.AssistantConversationRecording.serializeBinaryToWriter
4712
4953
  );
4713
4954
  }
4955
+ f = message.getTelephonyeventsList();
4956
+ if (f.length > 0) {
4957
+ writer.writeRepeatedMessage(
4958
+ 36,
4959
+ f,
4960
+ proto.AssistantConversationTelephonyEvent.serializeBinaryToWriter
4961
+ );
4962
+ }
4714
4963
  };
4715
4964
  proto.AssistantConversation.prototype.getId = function() {
4716
4965
  return (
@@ -4979,6 +5228,21 @@ var require_common_pb = __commonJS({
4979
5228
  proto.AssistantConversation.prototype.clearRecordingsList = function() {
4980
5229
  return this.setRecordingsList([]);
4981
5230
  };
5231
+ proto.AssistantConversation.prototype.getTelephonyeventsList = function() {
5232
+ return (
5233
+ /** @type{!Array<!proto.AssistantConversationTelephonyEvent>} */
5234
+ jspb.Message.getRepeatedWrapperField(this, proto.AssistantConversationTelephonyEvent, 36)
5235
+ );
5236
+ };
5237
+ proto.AssistantConversation.prototype.setTelephonyeventsList = function(value) {
5238
+ return jspb.Message.setRepeatedWrapperField(this, 36, value);
5239
+ };
5240
+ proto.AssistantConversation.prototype.addTelephonyevents = function(opt_value, opt_index) {
5241
+ return jspb.Message.addToRepeatedWrapperField(this, 36, opt_value, proto.AssistantConversationTelephonyEvent, opt_index);
5242
+ };
5243
+ proto.AssistantConversation.prototype.clearTelephonyeventsList = function() {
5244
+ return this.setTelephonyeventsList([]);
5245
+ };
4982
5246
  proto.GetAllAssistantConversationRequest.repeatedFields_ = [3];
4983
5247
  if (jspb.Message.GENERATE_TO_OBJECT) {
4984
5248
  proto.GetAllAssistantConversationRequest.prototype.toObject = function(opt_includeInstance) {
@@ -8809,10 +9073,8 @@ var require_assistant_deployment_pb = __commonJS({
8809
9073
  goog.object.extend(proto, common_pb);
8810
9074
  goog.exportSymbol("proto.assistant_api.AssistantApiDeployment", null, global);
8811
9075
  goog.exportSymbol("proto.assistant_api.AssistantDebuggerDeployment", null, global);
8812
- goog.exportSymbol("proto.assistant_api.AssistantDebuggerDeployment.IconCase", null, global);
8813
9076
  goog.exportSymbol("proto.assistant_api.AssistantPhoneDeployment", null, global);
8814
9077
  goog.exportSymbol("proto.assistant_api.AssistantWebpluginDeployment", null, global);
8815
- goog.exportSymbol("proto.assistant_api.AssistantWebpluginDeployment.IconCase", null, global);
8816
9078
  goog.exportSymbol("proto.assistant_api.AssistantWhatsappDeployment", null, global);
8817
9079
  goog.exportSymbol("proto.assistant_api.CreateAssistantDeploymentRequest", null, global);
8818
9080
  goog.exportSymbol("proto.assistant_api.CreateAssistantDeploymentRequest.DeploymentCase", null, global);
@@ -8831,7 +9093,7 @@ var require_assistant_deployment_pb = __commonJS({
8831
9093
  proto.assistant_api.DeploymentAudioProvider.displayName = "proto.assistant_api.DeploymentAudioProvider";
8832
9094
  }
8833
9095
  proto.assistant_api.AssistantWebpluginDeployment = function(opt_data) {
8834
- jspb.Message.initialize(this, opt_data, 0, -1, proto.assistant_api.AssistantWebpluginDeployment.repeatedFields_, proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_);
9096
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.assistant_api.AssistantWebpluginDeployment.repeatedFields_, null);
8835
9097
  };
8836
9098
  goog.inherits(proto.assistant_api.AssistantWebpluginDeployment, jspb.Message);
8837
9099
  if (goog.DEBUG && !COMPILED) {
@@ -8852,7 +9114,7 @@ var require_assistant_deployment_pb = __commonJS({
8852
9114
  proto.assistant_api.AssistantWhatsappDeployment.displayName = "proto.assistant_api.AssistantWhatsappDeployment";
8853
9115
  }
8854
9116
  proto.assistant_api.AssistantDebuggerDeployment = function(opt_data) {
8855
- jspb.Message.initialize(this, opt_data, 0, -1, proto.assistant_api.AssistantDebuggerDeployment.repeatedFields_, proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_);
9117
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
8856
9118
  };
8857
9119
  goog.inherits(proto.assistant_api.AssistantDebuggerDeployment, jspb.Message);
8858
9120
  if (goog.DEBUG && !COMPILED) {
@@ -8928,7 +9190,6 @@ var require_assistant_deployment_pb = __commonJS({
8928
9190
  common_pb.Metadata.toObject,
8929
9191
  includeInstance
8930
9192
  ),
8931
- audioproviderid: jspb.Message.getFieldWithDefault(msg, 4, "0"),
8932
9193
  status: jspb.Message.getFieldWithDefault(msg, 5, ""),
8933
9194
  audiotype: jspb.Message.getFieldWithDefault(msg, 6, "")
8934
9195
  };
@@ -8969,13 +9230,6 @@ var require_assistant_deployment_pb = __commonJS({
8969
9230
  reader.readMessage(value, common_pb.Metadata.deserializeBinaryFromReader);
8970
9231
  msg.addAudiooptions(value);
8971
9232
  break;
8972
- case 4:
8973
- var value = (
8974
- /** @type {string} */
8975
- reader.readUint64String()
8976
- );
8977
- msg.setAudioproviderid(value);
8978
- break;
8979
9233
  case 5:
8980
9234
  var value = (
8981
9235
  /** @type {string} */
@@ -9026,13 +9280,6 @@ var require_assistant_deployment_pb = __commonJS({
9026
9280
  common_pb.Metadata.serializeBinaryToWriter
9027
9281
  );
9028
9282
  }
9029
- f = message.getAudioproviderid();
9030
- if (parseInt(f, 10) !== 0) {
9031
- writer.writeUint64String(
9032
- 4,
9033
- f
9034
- );
9035
- }
9036
9283
  f = message.getStatus();
9037
9284
  if (f.length > 0) {
9038
9285
  writer.writeString(
@@ -9081,15 +9328,6 @@ var require_assistant_deployment_pb = __commonJS({
9081
9328
  proto.assistant_api.DeploymentAudioProvider.prototype.clearAudiooptionsList = function() {
9082
9329
  return this.setAudiooptionsList([]);
9083
9330
  };
9084
- proto.assistant_api.DeploymentAudioProvider.prototype.getAudioproviderid = function() {
9085
- return (
9086
- /** @type {string} */
9087
- jspb.Message.getFieldWithDefault(this, 4, "0")
9088
- );
9089
- };
9090
- proto.assistant_api.DeploymentAudioProvider.prototype.setAudioproviderid = function(value) {
9091
- return jspb.Message.setProto3StringIntField(this, 4, value);
9092
- };
9093
9331
  proto.assistant_api.DeploymentAudioProvider.prototype.getStatus = function() {
9094
9332
  return (
9095
9333
  /** @type {string} */
@@ -9109,18 +9347,6 @@ var require_assistant_deployment_pb = __commonJS({
9109
9347
  return jspb.Message.setProto3StringField(this, 6, value);
9110
9348
  };
9111
9349
  proto.assistant_api.AssistantWebpluginDeployment.repeatedFields_ = [20];
9112
- proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_ = [[15, 16]];
9113
- proto.assistant_api.AssistantWebpluginDeployment.IconCase = {
9114
- ICON_NOT_SET: 0,
9115
- URL: 15,
9116
- RAW: 16
9117
- };
9118
- proto.assistant_api.AssistantWebpluginDeployment.prototype.getIconCase = function() {
9119
- return (
9120
- /** @type {proto.assistant_api.AssistantWebpluginDeployment.IconCase} */
9121
- jspb.Message.computeOneofCase(this, proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_[0])
9122
- );
9123
- };
9124
9350
  if (jspb.Message.GENERATE_TO_OBJECT) {
9125
9351
  proto.assistant_api.AssistantWebpluginDeployment.prototype.toObject = function(opt_includeInstance) {
9126
9352
  return proto.assistant_api.AssistantWebpluginDeployment.toObject(opt_includeInstance, this);
@@ -9132,11 +9358,8 @@ var require_assistant_deployment_pb = __commonJS({
9132
9358
  name: jspb.Message.getFieldWithDefault(msg, 6, ""),
9133
9359
  greeting: jspb.Message.getFieldWithDefault(msg, 10, ""),
9134
9360
  mistake: jspb.Message.getFieldWithDefault(msg, 11, ""),
9135
- ending: jspb.Message.getFieldWithDefault(msg, 12, ""),
9136
9361
  inputaudio: (f = msg.getInputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
9137
9362
  outputaudio: (f = msg.getOutputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
9138
- url: jspb.Message.getFieldWithDefault(msg, 15, ""),
9139
- raw: (f = msg.getRaw()) && common_pb.Content.toObject(includeInstance, f),
9140
9363
  suggestionList: (f = jspb.Message.getRepeatedField(msg, 20)) == null ? void 0 : f,
9141
9364
  helpcenterenabled: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
9142
9365
  productcatalogenabled: jspb.Message.getBooleanFieldWithDefault(msg, 22, false),
@@ -9144,7 +9367,10 @@ var require_assistant_deployment_pb = __commonJS({
9144
9367
  uploadfileenabled: jspb.Message.getBooleanFieldWithDefault(msg, 24, false),
9145
9368
  createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
9146
9369
  updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
9147
- status: jspb.Message.getFieldWithDefault(msg, 28, "")
9370
+ status: jspb.Message.getFieldWithDefault(msg, 28, ""),
9371
+ maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
9372
+ idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
9373
+ idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
9148
9374
  };
9149
9375
  if (includeInstance) {
9150
9376
  obj.$jspbMessageInstance = msg;
@@ -9199,13 +9425,6 @@ var require_assistant_deployment_pb = __commonJS({
9199
9425
  );
9200
9426
  msg.setMistake(value);
9201
9427
  break;
9202
- case 12:
9203
- var value = (
9204
- /** @type {string} */
9205
- reader.readString()
9206
- );
9207
- msg.setEnding(value);
9208
- break;
9209
9428
  case 13:
9210
9429
  var value = new proto.assistant_api.DeploymentAudioProvider();
9211
9430
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
@@ -9216,18 +9435,6 @@ var require_assistant_deployment_pb = __commonJS({
9216
9435
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
9217
9436
  msg.setOutputaudio(value);
9218
9437
  break;
9219
- case 15:
9220
- var value = (
9221
- /** @type {string} */
9222
- reader.readString()
9223
- );
9224
- msg.setUrl(value);
9225
- break;
9226
- case 16:
9227
- var value = new common_pb.Content();
9228
- reader.readMessage(value, common_pb.Content.deserializeBinaryFromReader);
9229
- msg.setRaw(value);
9230
- break;
9231
9438
  case 20:
9232
9439
  var value = (
9233
9440
  /** @type {string} */
@@ -9280,15 +9487,36 @@ var require_assistant_deployment_pb = __commonJS({
9280
9487
  );
9281
9488
  msg.setStatus(value);
9282
9489
  break;
9283
- default:
9284
- reader.skipField();
9490
+ case 29:
9491
+ var value = (
9492
+ /** @type {string} */
9493
+ reader.readUint64String()
9494
+ );
9495
+ msg.setMaxsessionduration(value);
9285
9496
  break;
9286
- }
9287
- }
9288
- return msg;
9289
- };
9290
- proto.assistant_api.AssistantWebpluginDeployment.prototype.serializeBinary = function() {
9291
- var writer = new jspb.BinaryWriter();
9497
+ case 30:
9498
+ var value = (
9499
+ /** @type {string} */
9500
+ reader.readUint64String()
9501
+ );
9502
+ msg.setIdealtimeout(value);
9503
+ break;
9504
+ case 31:
9505
+ var value = (
9506
+ /** @type {string} */
9507
+ reader.readString()
9508
+ );
9509
+ msg.setIdealtimeoutmessage(value);
9510
+ break;
9511
+ default:
9512
+ reader.skipField();
9513
+ break;
9514
+ }
9515
+ }
9516
+ return msg;
9517
+ };
9518
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.serializeBinary = function() {
9519
+ var writer = new jspb.BinaryWriter();
9292
9520
  proto.assistant_api.AssistantWebpluginDeployment.serializeBinaryToWriter(this, writer);
9293
9521
  return writer.getResultBuffer();
9294
9522
  };
@@ -9331,14 +9559,6 @@ var require_assistant_deployment_pb = __commonJS({
9331
9559
  f
9332
9560
  );
9333
9561
  }
9334
- f = /** @type {string} */
9335
- jspb.Message.getField(message, 12);
9336
- if (f != null) {
9337
- writer.writeString(
9338
- 12,
9339
- f
9340
- );
9341
- }
9342
9562
  f = message.getInputaudio();
9343
9563
  if (f != null) {
9344
9564
  writer.writeMessage(
@@ -9355,22 +9575,6 @@ var require_assistant_deployment_pb = __commonJS({
9355
9575
  proto.assistant_api.DeploymentAudioProvider.serializeBinaryToWriter
9356
9576
  );
9357
9577
  }
9358
- f = /** @type {string} */
9359
- jspb.Message.getField(message, 15);
9360
- if (f != null) {
9361
- writer.writeString(
9362
- 15,
9363
- f
9364
- );
9365
- }
9366
- f = message.getRaw();
9367
- if (f != null) {
9368
- writer.writeMessage(
9369
- 16,
9370
- f,
9371
- common_pb.Content.serializeBinaryToWriter
9372
- );
9373
- }
9374
9578
  f = message.getSuggestionList();
9375
9579
  if (f.length > 0) {
9376
9580
  writer.writeRepeatedString(
@@ -9429,6 +9633,27 @@ var require_assistant_deployment_pb = __commonJS({
9429
9633
  f
9430
9634
  );
9431
9635
  }
9636
+ f = message.getMaxsessionduration();
9637
+ if (parseInt(f, 10) !== 0) {
9638
+ writer.writeUint64String(
9639
+ 29,
9640
+ f
9641
+ );
9642
+ }
9643
+ f = message.getIdealtimeout();
9644
+ if (parseInt(f, 10) !== 0) {
9645
+ writer.writeUint64String(
9646
+ 30,
9647
+ f
9648
+ );
9649
+ }
9650
+ f = message.getIdealtimeoutmessage();
9651
+ if (f.length > 0) {
9652
+ writer.writeString(
9653
+ 31,
9654
+ f
9655
+ );
9656
+ }
9432
9657
  };
9433
9658
  proto.assistant_api.AssistantWebpluginDeployment.prototype.getId = function() {
9434
9659
  return (
@@ -9487,21 +9712,6 @@ var require_assistant_deployment_pb = __commonJS({
9487
9712
  proto.assistant_api.AssistantWebpluginDeployment.prototype.hasMistake = function() {
9488
9713
  return jspb.Message.getField(this, 11) != null;
9489
9714
  };
9490
- proto.assistant_api.AssistantWebpluginDeployment.prototype.getEnding = function() {
9491
- return (
9492
- /** @type {string} */
9493
- jspb.Message.getFieldWithDefault(this, 12, "")
9494
- );
9495
- };
9496
- proto.assistant_api.AssistantWebpluginDeployment.prototype.setEnding = function(value) {
9497
- return jspb.Message.setField(this, 12, value);
9498
- };
9499
- proto.assistant_api.AssistantWebpluginDeployment.prototype.clearEnding = function() {
9500
- return jspb.Message.setField(this, 12, void 0);
9501
- };
9502
- proto.assistant_api.AssistantWebpluginDeployment.prototype.hasEnding = function() {
9503
- return jspb.Message.getField(this, 12) != null;
9504
- };
9505
9715
  proto.assistant_api.AssistantWebpluginDeployment.prototype.getInputaudio = function() {
9506
9716
  return (
9507
9717
  /** @type{?proto.assistant_api.DeploymentAudioProvider} */
@@ -9532,36 +9742,6 @@ var require_assistant_deployment_pb = __commonJS({
9532
9742
  proto.assistant_api.AssistantWebpluginDeployment.prototype.hasOutputaudio = function() {
9533
9743
  return jspb.Message.getField(this, 14) != null;
9534
9744
  };
9535
- proto.assistant_api.AssistantWebpluginDeployment.prototype.getUrl = function() {
9536
- return (
9537
- /** @type {string} */
9538
- jspb.Message.getFieldWithDefault(this, 15, "")
9539
- );
9540
- };
9541
- proto.assistant_api.AssistantWebpluginDeployment.prototype.setUrl = function(value) {
9542
- return jspb.Message.setOneofField(this, 15, proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_[0], value);
9543
- };
9544
- proto.assistant_api.AssistantWebpluginDeployment.prototype.clearUrl = function() {
9545
- return jspb.Message.setOneofField(this, 15, proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_[0], void 0);
9546
- };
9547
- proto.assistant_api.AssistantWebpluginDeployment.prototype.hasUrl = function() {
9548
- return jspb.Message.getField(this, 15) != null;
9549
- };
9550
- proto.assistant_api.AssistantWebpluginDeployment.prototype.getRaw = function() {
9551
- return (
9552
- /** @type{?proto.Content} */
9553
- jspb.Message.getWrapperField(this, common_pb.Content, 16)
9554
- );
9555
- };
9556
- proto.assistant_api.AssistantWebpluginDeployment.prototype.setRaw = function(value) {
9557
- return jspb.Message.setOneofWrapperField(this, 16, proto.assistant_api.AssistantWebpluginDeployment.oneofGroups_[0], value);
9558
- };
9559
- proto.assistant_api.AssistantWebpluginDeployment.prototype.clearRaw = function() {
9560
- return this.setRaw(void 0);
9561
- };
9562
- proto.assistant_api.AssistantWebpluginDeployment.prototype.hasRaw = function() {
9563
- return jspb.Message.getField(this, 16) != null;
9564
- };
9565
9745
  proto.assistant_api.AssistantWebpluginDeployment.prototype.getSuggestionList = function() {
9566
9746
  return (
9567
9747
  /** @type {!Array<string>} */
@@ -9652,6 +9832,33 @@ var require_assistant_deployment_pb = __commonJS({
9652
9832
  proto.assistant_api.AssistantWebpluginDeployment.prototype.setStatus = function(value) {
9653
9833
  return jspb.Message.setProto3StringField(this, 28, value);
9654
9834
  };
9835
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.getMaxsessionduration = function() {
9836
+ return (
9837
+ /** @type {string} */
9838
+ jspb.Message.getFieldWithDefault(this, 29, "0")
9839
+ );
9840
+ };
9841
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.setMaxsessionduration = function(value) {
9842
+ return jspb.Message.setProto3StringIntField(this, 29, value);
9843
+ };
9844
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.getIdealtimeout = function() {
9845
+ return (
9846
+ /** @type {string} */
9847
+ jspb.Message.getFieldWithDefault(this, 30, "0")
9848
+ );
9849
+ };
9850
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeout = function(value) {
9851
+ return jspb.Message.setProto3StringIntField(this, 30, value);
9852
+ };
9853
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.getIdealtimeoutmessage = function() {
9854
+ return (
9855
+ /** @type {string} */
9856
+ jspb.Message.getFieldWithDefault(this, 31, "")
9857
+ );
9858
+ };
9859
+ proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeoutmessage = function(value) {
9860
+ return jspb.Message.setProto3StringField(this, 31, value);
9861
+ };
9655
9862
  proto.assistant_api.AssistantPhoneDeployment.repeatedFields_ = [17];
9656
9863
  if (jspb.Message.GENERATE_TO_OBJECT) {
9657
9864
  proto.assistant_api.AssistantPhoneDeployment.prototype.toObject = function(opt_includeInstance) {
@@ -9663,11 +9870,9 @@ var require_assistant_deployment_pb = __commonJS({
9663
9870
  assistantid: jspb.Message.getFieldWithDefault(msg, 5, "0"),
9664
9871
  greeting: jspb.Message.getFieldWithDefault(msg, 10, ""),
9665
9872
  mistake: jspb.Message.getFieldWithDefault(msg, 11, ""),
9666
- ending: jspb.Message.getFieldWithDefault(msg, 12, ""),
9667
9873
  inputaudio: (f = msg.getInputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
9668
9874
  outputaudio: (f = msg.getOutputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
9669
9875
  phoneprovidername: jspb.Message.getFieldWithDefault(msg, 15, ""),
9670
- phoneproviderid: jspb.Message.getFieldWithDefault(msg, 16, "0"),
9671
9876
  phoneoptionsList: jspb.Message.toObjectList(
9672
9877
  msg.getPhoneoptionsList(),
9673
9878
  common_pb.Metadata.toObject,
@@ -9675,7 +9880,10 @@ var require_assistant_deployment_pb = __commonJS({
9675
9880
  ),
9676
9881
  createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
9677
9882
  updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
9678
- status: jspb.Message.getFieldWithDefault(msg, 28, "")
9883
+ status: jspb.Message.getFieldWithDefault(msg, 28, ""),
9884
+ maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
9885
+ idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
9886
+ idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
9679
9887
  };
9680
9888
  if (includeInstance) {
9681
9889
  obj.$jspbMessageInstance = msg;
@@ -9723,13 +9931,6 @@ var require_assistant_deployment_pb = __commonJS({
9723
9931
  );
9724
9932
  msg.setMistake(value);
9725
9933
  break;
9726
- case 12:
9727
- var value = (
9728
- /** @type {string} */
9729
- reader.readString()
9730
- );
9731
- msg.setEnding(value);
9732
- break;
9733
9934
  case 13:
9734
9935
  var value = new proto.assistant_api.DeploymentAudioProvider();
9735
9936
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
@@ -9747,13 +9948,6 @@ var require_assistant_deployment_pb = __commonJS({
9747
9948
  );
9748
9949
  msg.setPhoneprovidername(value);
9749
9950
  break;
9750
- case 16:
9751
- var value = (
9752
- /** @type {string} */
9753
- reader.readUint64String()
9754
- );
9755
- msg.setPhoneproviderid(value);
9756
- break;
9757
9951
  case 17:
9758
9952
  var value = new common_pb.Metadata();
9759
9953
  reader.readMessage(value, common_pb.Metadata.deserializeBinaryFromReader);
@@ -9776,6 +9970,27 @@ var require_assistant_deployment_pb = __commonJS({
9776
9970
  );
9777
9971
  msg.setStatus(value);
9778
9972
  break;
9973
+ case 29:
9974
+ var value = (
9975
+ /** @type {string} */
9976
+ reader.readUint64String()
9977
+ );
9978
+ msg.setMaxsessionduration(value);
9979
+ break;
9980
+ case 30:
9981
+ var value = (
9982
+ /** @type {string} */
9983
+ reader.readUint64String()
9984
+ );
9985
+ msg.setIdealtimeout(value);
9986
+ break;
9987
+ case 31:
9988
+ var value = (
9989
+ /** @type {string} */
9990
+ reader.readString()
9991
+ );
9992
+ msg.setIdealtimeoutmessage(value);
9993
+ break;
9779
9994
  default:
9780
9995
  reader.skipField();
9781
9996
  break;
@@ -9820,14 +10035,6 @@ var require_assistant_deployment_pb = __commonJS({
9820
10035
  f
9821
10036
  );
9822
10037
  }
9823
- f = /** @type {string} */
9824
- jspb.Message.getField(message, 12);
9825
- if (f != null) {
9826
- writer.writeString(
9827
- 12,
9828
- f
9829
- );
9830
- }
9831
10038
  f = message.getInputaudio();
9832
10039
  if (f != null) {
9833
10040
  writer.writeMessage(
@@ -9851,13 +10058,6 @@ var require_assistant_deployment_pb = __commonJS({
9851
10058
  f
9852
10059
  );
9853
10060
  }
9854
- f = message.getPhoneproviderid();
9855
- if (parseInt(f, 10) !== 0) {
9856
- writer.writeUint64String(
9857
- 16,
9858
- f
9859
- );
9860
- }
9861
10061
  f = message.getPhoneoptionsList();
9862
10062
  if (f.length > 0) {
9863
10063
  writer.writeRepeatedMessage(
@@ -9889,6 +10089,27 @@ var require_assistant_deployment_pb = __commonJS({
9889
10089
  f
9890
10090
  );
9891
10091
  }
10092
+ f = message.getMaxsessionduration();
10093
+ if (parseInt(f, 10) !== 0) {
10094
+ writer.writeUint64String(
10095
+ 29,
10096
+ f
10097
+ );
10098
+ }
10099
+ f = message.getIdealtimeout();
10100
+ if (parseInt(f, 10) !== 0) {
10101
+ writer.writeUint64String(
10102
+ 30,
10103
+ f
10104
+ );
10105
+ }
10106
+ f = message.getIdealtimeoutmessage();
10107
+ if (f.length > 0) {
10108
+ writer.writeString(
10109
+ 31,
10110
+ f
10111
+ );
10112
+ }
9892
10113
  };
9893
10114
  proto.assistant_api.AssistantPhoneDeployment.prototype.getId = function() {
9894
10115
  return (
@@ -9938,21 +10159,6 @@ var require_assistant_deployment_pb = __commonJS({
9938
10159
  proto.assistant_api.AssistantPhoneDeployment.prototype.hasMistake = function() {
9939
10160
  return jspb.Message.getField(this, 11) != null;
9940
10161
  };
9941
- proto.assistant_api.AssistantPhoneDeployment.prototype.getEnding = function() {
9942
- return (
9943
- /** @type {string} */
9944
- jspb.Message.getFieldWithDefault(this, 12, "")
9945
- );
9946
- };
9947
- proto.assistant_api.AssistantPhoneDeployment.prototype.setEnding = function(value) {
9948
- return jspb.Message.setField(this, 12, value);
9949
- };
9950
- proto.assistant_api.AssistantPhoneDeployment.prototype.clearEnding = function() {
9951
- return jspb.Message.setField(this, 12, void 0);
9952
- };
9953
- proto.assistant_api.AssistantPhoneDeployment.prototype.hasEnding = function() {
9954
- return jspb.Message.getField(this, 12) != null;
9955
- };
9956
10162
  proto.assistant_api.AssistantPhoneDeployment.prototype.getInputaudio = function() {
9957
10163
  return (
9958
10164
  /** @type{?proto.assistant_api.DeploymentAudioProvider} */
@@ -9992,15 +10198,6 @@ var require_assistant_deployment_pb = __commonJS({
9992
10198
  proto.assistant_api.AssistantPhoneDeployment.prototype.setPhoneprovidername = function(value) {
9993
10199
  return jspb.Message.setProto3StringField(this, 15, value);
9994
10200
  };
9995
- proto.assistant_api.AssistantPhoneDeployment.prototype.getPhoneproviderid = function() {
9996
- return (
9997
- /** @type {string} */
9998
- jspb.Message.getFieldWithDefault(this, 16, "0")
9999
- );
10000
- };
10001
- proto.assistant_api.AssistantPhoneDeployment.prototype.setPhoneproviderid = function(value) {
10002
- return jspb.Message.setProto3StringIntField(this, 16, value);
10003
- };
10004
10201
  proto.assistant_api.AssistantPhoneDeployment.prototype.getPhoneoptionsList = function() {
10005
10202
  return (
10006
10203
  /** @type{!Array<!proto.Metadata>} */
@@ -10055,6 +10252,33 @@ var require_assistant_deployment_pb = __commonJS({
10055
10252
  proto.assistant_api.AssistantPhoneDeployment.prototype.setStatus = function(value) {
10056
10253
  return jspb.Message.setProto3StringField(this, 28, value);
10057
10254
  };
10255
+ proto.assistant_api.AssistantPhoneDeployment.prototype.getMaxsessionduration = function() {
10256
+ return (
10257
+ /** @type {string} */
10258
+ jspb.Message.getFieldWithDefault(this, 29, "0")
10259
+ );
10260
+ };
10261
+ proto.assistant_api.AssistantPhoneDeployment.prototype.setMaxsessionduration = function(value) {
10262
+ return jspb.Message.setProto3StringIntField(this, 29, value);
10263
+ };
10264
+ proto.assistant_api.AssistantPhoneDeployment.prototype.getIdealtimeout = function() {
10265
+ return (
10266
+ /** @type {string} */
10267
+ jspb.Message.getFieldWithDefault(this, 30, "0")
10268
+ );
10269
+ };
10270
+ proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeout = function(value) {
10271
+ return jspb.Message.setProto3StringIntField(this, 30, value);
10272
+ };
10273
+ proto.assistant_api.AssistantPhoneDeployment.prototype.getIdealtimeoutmessage = function() {
10274
+ return (
10275
+ /** @type {string} */
10276
+ jspb.Message.getFieldWithDefault(this, 31, "")
10277
+ );
10278
+ };
10279
+ proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeoutmessage = function(value) {
10280
+ return jspb.Message.setProto3StringField(this, 31, value);
10281
+ };
10058
10282
  proto.assistant_api.AssistantWhatsappDeployment.repeatedFields_ = [17];
10059
10283
  if (jspb.Message.GENERATE_TO_OBJECT) {
10060
10284
  proto.assistant_api.AssistantWhatsappDeployment.prototype.toObject = function(opt_includeInstance) {
@@ -10067,9 +10291,9 @@ var require_assistant_deployment_pb = __commonJS({
10067
10291
  name: jspb.Message.getFieldWithDefault(msg, 6, ""),
10068
10292
  greeting: jspb.Message.getFieldWithDefault(msg, 10, ""),
10069
10293
  mistake: jspb.Message.getFieldWithDefault(msg, 11, ""),
10070
- ending: jspb.Message.getFieldWithDefault(msg, 12, ""),
10294
+ inputaudio: (f = msg.getInputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10295
+ outputaudio: (f = msg.getOutputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10071
10296
  whatsappprovidername: jspb.Message.getFieldWithDefault(msg, 15, ""),
10072
- whatsappproviderid: jspb.Message.getFieldWithDefault(msg, 16, "0"),
10073
10297
  whatsappoptionsList: jspb.Message.toObjectList(
10074
10298
  msg.getWhatsappoptionsList(),
10075
10299
  common_pb.Metadata.toObject,
@@ -10077,7 +10301,10 @@ var require_assistant_deployment_pb = __commonJS({
10077
10301
  ),
10078
10302
  createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10079
10303
  updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10080
- status: jspb.Message.getFieldWithDefault(msg, 28, "")
10304
+ status: jspb.Message.getFieldWithDefault(msg, 28, ""),
10305
+ maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
10306
+ idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
10307
+ idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
10081
10308
  };
10082
10309
  if (includeInstance) {
10083
10310
  obj.$jspbMessageInstance = msg;
@@ -10132,12 +10359,15 @@ var require_assistant_deployment_pb = __commonJS({
10132
10359
  );
10133
10360
  msg.setMistake(value);
10134
10361
  break;
10135
- case 12:
10136
- var value = (
10137
- /** @type {string} */
10138
- reader.readString()
10139
- );
10140
- msg.setEnding(value);
10362
+ case 13:
10363
+ var value = new proto.assistant_api.DeploymentAudioProvider();
10364
+ reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
10365
+ msg.setInputaudio(value);
10366
+ break;
10367
+ case 14:
10368
+ var value = new proto.assistant_api.DeploymentAudioProvider();
10369
+ reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
10370
+ msg.setOutputaudio(value);
10141
10371
  break;
10142
10372
  case 15:
10143
10373
  var value = (
@@ -10146,13 +10376,6 @@ var require_assistant_deployment_pb = __commonJS({
10146
10376
  );
10147
10377
  msg.setWhatsappprovidername(value);
10148
10378
  break;
10149
- case 16:
10150
- var value = (
10151
- /** @type {string} */
10152
- reader.readUint64String()
10153
- );
10154
- msg.setWhatsappproviderid(value);
10155
- break;
10156
10379
  case 17:
10157
10380
  var value = new common_pb.Metadata();
10158
10381
  reader.readMessage(value, common_pb.Metadata.deserializeBinaryFromReader);
@@ -10175,6 +10398,27 @@ var require_assistant_deployment_pb = __commonJS({
10175
10398
  );
10176
10399
  msg.setStatus(value);
10177
10400
  break;
10401
+ case 29:
10402
+ var value = (
10403
+ /** @type {string} */
10404
+ reader.readUint64String()
10405
+ );
10406
+ msg.setMaxsessionduration(value);
10407
+ break;
10408
+ case 30:
10409
+ var value = (
10410
+ /** @type {string} */
10411
+ reader.readUint64String()
10412
+ );
10413
+ msg.setIdealtimeout(value);
10414
+ break;
10415
+ case 31:
10416
+ var value = (
10417
+ /** @type {string} */
10418
+ reader.readString()
10419
+ );
10420
+ msg.setIdealtimeoutmessage(value);
10421
+ break;
10178
10422
  default:
10179
10423
  reader.skipField();
10180
10424
  break;
@@ -10226,12 +10470,20 @@ var require_assistant_deployment_pb = __commonJS({
10226
10470
  f
10227
10471
  );
10228
10472
  }
10229
- f = /** @type {string} */
10230
- jspb.Message.getField(message, 12);
10473
+ f = message.getInputaudio();
10231
10474
  if (f != null) {
10232
- writer.writeString(
10233
- 12,
10234
- f
10475
+ writer.writeMessage(
10476
+ 13,
10477
+ f,
10478
+ proto.assistant_api.DeploymentAudioProvider.serializeBinaryToWriter
10479
+ );
10480
+ }
10481
+ f = message.getOutputaudio();
10482
+ if (f != null) {
10483
+ writer.writeMessage(
10484
+ 14,
10485
+ f,
10486
+ proto.assistant_api.DeploymentAudioProvider.serializeBinaryToWriter
10235
10487
  );
10236
10488
  }
10237
10489
  f = message.getWhatsappprovidername();
@@ -10241,13 +10493,6 @@ var require_assistant_deployment_pb = __commonJS({
10241
10493
  f
10242
10494
  );
10243
10495
  }
10244
- f = message.getWhatsappproviderid();
10245
- if (parseInt(f, 10) !== 0) {
10246
- writer.writeUint64String(
10247
- 16,
10248
- f
10249
- );
10250
- }
10251
10496
  f = message.getWhatsappoptionsList();
10252
10497
  if (f.length > 0) {
10253
10498
  writer.writeRepeatedMessage(
@@ -10279,6 +10524,27 @@ var require_assistant_deployment_pb = __commonJS({
10279
10524
  f
10280
10525
  );
10281
10526
  }
10527
+ f = message.getMaxsessionduration();
10528
+ if (parseInt(f, 10) !== 0) {
10529
+ writer.writeUint64String(
10530
+ 29,
10531
+ f
10532
+ );
10533
+ }
10534
+ f = message.getIdealtimeout();
10535
+ if (parseInt(f, 10) !== 0) {
10536
+ writer.writeUint64String(
10537
+ 30,
10538
+ f
10539
+ );
10540
+ }
10541
+ f = message.getIdealtimeoutmessage();
10542
+ if (f.length > 0) {
10543
+ writer.writeString(
10544
+ 31,
10545
+ f
10546
+ );
10547
+ }
10282
10548
  };
10283
10549
  proto.assistant_api.AssistantWhatsappDeployment.prototype.getId = function() {
10284
10550
  return (
@@ -10337,38 +10603,44 @@ var require_assistant_deployment_pb = __commonJS({
10337
10603
  proto.assistant_api.AssistantWhatsappDeployment.prototype.hasMistake = function() {
10338
10604
  return jspb.Message.getField(this, 11) != null;
10339
10605
  };
10340
- proto.assistant_api.AssistantWhatsappDeployment.prototype.getEnding = function() {
10606
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getInputaudio = function() {
10341
10607
  return (
10342
- /** @type {string} */
10343
- jspb.Message.getFieldWithDefault(this, 12, "")
10608
+ /** @type{?proto.assistant_api.DeploymentAudioProvider} */
10609
+ jspb.Message.getWrapperField(this, proto.assistant_api.DeploymentAudioProvider, 13)
10344
10610
  );
10345
10611
  };
10346
- proto.assistant_api.AssistantWhatsappDeployment.prototype.setEnding = function(value) {
10347
- return jspb.Message.setField(this, 12, value);
10612
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setInputaudio = function(value) {
10613
+ return jspb.Message.setWrapperField(this, 13, value);
10348
10614
  };
10349
- proto.assistant_api.AssistantWhatsappDeployment.prototype.clearEnding = function() {
10350
- return jspb.Message.setField(this, 12, void 0);
10615
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.clearInputaudio = function() {
10616
+ return this.setInputaudio(void 0);
10351
10617
  };
10352
- proto.assistant_api.AssistantWhatsappDeployment.prototype.hasEnding = function() {
10353
- return jspb.Message.getField(this, 12) != null;
10618
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.hasInputaudio = function() {
10619
+ return jspb.Message.getField(this, 13) != null;
10354
10620
  };
10355
- proto.assistant_api.AssistantWhatsappDeployment.prototype.getWhatsappprovidername = function() {
10621
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getOutputaudio = function() {
10356
10622
  return (
10357
- /** @type {string} */
10358
- jspb.Message.getFieldWithDefault(this, 15, "")
10623
+ /** @type{?proto.assistant_api.DeploymentAudioProvider} */
10624
+ jspb.Message.getWrapperField(this, proto.assistant_api.DeploymentAudioProvider, 14)
10359
10625
  );
10360
10626
  };
10361
- proto.assistant_api.AssistantWhatsappDeployment.prototype.setWhatsappprovidername = function(value) {
10362
- return jspb.Message.setProto3StringField(this, 15, value);
10627
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setOutputaudio = function(value) {
10628
+ return jspb.Message.setWrapperField(this, 14, value);
10629
+ };
10630
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.clearOutputaudio = function() {
10631
+ return this.setOutputaudio(void 0);
10632
+ };
10633
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.hasOutputaudio = function() {
10634
+ return jspb.Message.getField(this, 14) != null;
10363
10635
  };
10364
- proto.assistant_api.AssistantWhatsappDeployment.prototype.getWhatsappproviderid = function() {
10636
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getWhatsappprovidername = function() {
10365
10637
  return (
10366
10638
  /** @type {string} */
10367
- jspb.Message.getFieldWithDefault(this, 16, "0")
10639
+ jspb.Message.getFieldWithDefault(this, 15, "")
10368
10640
  );
10369
10641
  };
10370
- proto.assistant_api.AssistantWhatsappDeployment.prototype.setWhatsappproviderid = function(value) {
10371
- return jspb.Message.setProto3StringIntField(this, 16, value);
10642
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setWhatsappprovidername = function(value) {
10643
+ return jspb.Message.setProto3StringField(this, 15, value);
10372
10644
  };
10373
10645
  proto.assistant_api.AssistantWhatsappDeployment.prototype.getWhatsappoptionsList = function() {
10374
10646
  return (
@@ -10418,25 +10690,39 @@ var require_assistant_deployment_pb = __commonJS({
10418
10690
  proto.assistant_api.AssistantWhatsappDeployment.prototype.getStatus = function() {
10419
10691
  return (
10420
10692
  /** @type {string} */
10421
- jspb.Message.getFieldWithDefault(this, 28, "")
10693
+ jspb.Message.getFieldWithDefault(this, 28, "")
10694
+ );
10695
+ };
10696
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setStatus = function(value) {
10697
+ return jspb.Message.setProto3StringField(this, 28, value);
10698
+ };
10699
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getMaxsessionduration = function() {
10700
+ return (
10701
+ /** @type {string} */
10702
+ jspb.Message.getFieldWithDefault(this, 29, "0")
10703
+ );
10704
+ };
10705
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setMaxsessionduration = function(value) {
10706
+ return jspb.Message.setProto3StringIntField(this, 29, value);
10707
+ };
10708
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getIdealtimeout = function() {
10709
+ return (
10710
+ /** @type {string} */
10711
+ jspb.Message.getFieldWithDefault(this, 30, "0")
10422
10712
  );
10423
10713
  };
10424
- proto.assistant_api.AssistantWhatsappDeployment.prototype.setStatus = function(value) {
10425
- return jspb.Message.setProto3StringField(this, 28, value);
10426
- };
10427
- proto.assistant_api.AssistantDebuggerDeployment.repeatedFields_ = [20];
10428
- proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_ = [[15, 16]];
10429
- proto.assistant_api.AssistantDebuggerDeployment.IconCase = {
10430
- ICON_NOT_SET: 0,
10431
- URL: 15,
10432
- RAW: 16
10714
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeout = function(value) {
10715
+ return jspb.Message.setProto3StringIntField(this, 30, value);
10433
10716
  };
10434
- proto.assistant_api.AssistantDebuggerDeployment.prototype.getIconCase = function() {
10717
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.getIdealtimeoutmessage = function() {
10435
10718
  return (
10436
- /** @type {proto.assistant_api.AssistantDebuggerDeployment.IconCase} */
10437
- jspb.Message.computeOneofCase(this, proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_[0])
10719
+ /** @type {string} */
10720
+ jspb.Message.getFieldWithDefault(this, 31, "")
10438
10721
  );
10439
10722
  };
10723
+ proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeoutmessage = function(value) {
10724
+ return jspb.Message.setProto3StringField(this, 31, value);
10725
+ };
10440
10726
  if (jspb.Message.GENERATE_TO_OBJECT) {
10441
10727
  proto.assistant_api.AssistantDebuggerDeployment.prototype.toObject = function(opt_includeInstance) {
10442
10728
  return proto.assistant_api.AssistantDebuggerDeployment.toObject(opt_includeInstance, this);
@@ -10448,15 +10734,14 @@ var require_assistant_deployment_pb = __commonJS({
10448
10734
  name: jspb.Message.getFieldWithDefault(msg, 6, ""),
10449
10735
  greeting: jspb.Message.getFieldWithDefault(msg, 10, ""),
10450
10736
  mistake: jspb.Message.getFieldWithDefault(msg, 11, ""),
10451
- ending: jspb.Message.getFieldWithDefault(msg, 12, ""),
10452
10737
  inputaudio: (f = msg.getInputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10453
10738
  outputaudio: (f = msg.getOutputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10454
- url: jspb.Message.getFieldWithDefault(msg, 15, ""),
10455
- raw: (f = msg.getRaw()) && common_pb.Content.toObject(includeInstance, f),
10456
- suggestionList: (f = jspb.Message.getRepeatedField(msg, 20)) == null ? void 0 : f,
10457
10739
  createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10458
10740
  updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10459
- status: jspb.Message.getFieldWithDefault(msg, 28, "")
10741
+ status: jspb.Message.getFieldWithDefault(msg, 28, ""),
10742
+ maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
10743
+ idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
10744
+ idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
10460
10745
  };
10461
10746
  if (includeInstance) {
10462
10747
  obj.$jspbMessageInstance = msg;
@@ -10511,13 +10796,6 @@ var require_assistant_deployment_pb = __commonJS({
10511
10796
  );
10512
10797
  msg.setMistake(value);
10513
10798
  break;
10514
- case 12:
10515
- var value = (
10516
- /** @type {string} */
10517
- reader.readString()
10518
- );
10519
- msg.setEnding(value);
10520
- break;
10521
10799
  case 13:
10522
10800
  var value = new proto.assistant_api.DeploymentAudioProvider();
10523
10801
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
@@ -10528,25 +10806,6 @@ var require_assistant_deployment_pb = __commonJS({
10528
10806
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
10529
10807
  msg.setOutputaudio(value);
10530
10808
  break;
10531
- case 15:
10532
- var value = (
10533
- /** @type {string} */
10534
- reader.readString()
10535
- );
10536
- msg.setUrl(value);
10537
- break;
10538
- case 16:
10539
- var value = new common_pb.Content();
10540
- reader.readMessage(value, common_pb.Content.deserializeBinaryFromReader);
10541
- msg.setRaw(value);
10542
- break;
10543
- case 20:
10544
- var value = (
10545
- /** @type {string} */
10546
- reader.readString()
10547
- );
10548
- msg.addSuggestion(value);
10549
- break;
10550
10809
  case 26:
10551
10810
  var value = new google_protobuf_timestamp_pb.Timestamp();
10552
10811
  reader.readMessage(value, google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
@@ -10564,6 +10823,27 @@ var require_assistant_deployment_pb = __commonJS({
10564
10823
  );
10565
10824
  msg.setStatus(value);
10566
10825
  break;
10826
+ case 29:
10827
+ var value = (
10828
+ /** @type {string} */
10829
+ reader.readUint64String()
10830
+ );
10831
+ msg.setMaxsessionduration(value);
10832
+ break;
10833
+ case 30:
10834
+ var value = (
10835
+ /** @type {string} */
10836
+ reader.readUint64String()
10837
+ );
10838
+ msg.setIdealtimeout(value);
10839
+ break;
10840
+ case 31:
10841
+ var value = (
10842
+ /** @type {string} */
10843
+ reader.readString()
10844
+ );
10845
+ msg.setIdealtimeoutmessage(value);
10846
+ break;
10567
10847
  default:
10568
10848
  reader.skipField();
10569
10849
  break;
@@ -10615,14 +10895,6 @@ var require_assistant_deployment_pb = __commonJS({
10615
10895
  f
10616
10896
  );
10617
10897
  }
10618
- f = /** @type {string} */
10619
- jspb.Message.getField(message, 12);
10620
- if (f != null) {
10621
- writer.writeString(
10622
- 12,
10623
- f
10624
- );
10625
- }
10626
10898
  f = message.getInputaudio();
10627
10899
  if (f != null) {
10628
10900
  writer.writeMessage(
@@ -10639,29 +10911,6 @@ var require_assistant_deployment_pb = __commonJS({
10639
10911
  proto.assistant_api.DeploymentAudioProvider.serializeBinaryToWriter
10640
10912
  );
10641
10913
  }
10642
- f = /** @type {string} */
10643
- jspb.Message.getField(message, 15);
10644
- if (f != null) {
10645
- writer.writeString(
10646
- 15,
10647
- f
10648
- );
10649
- }
10650
- f = message.getRaw();
10651
- if (f != null) {
10652
- writer.writeMessage(
10653
- 16,
10654
- f,
10655
- common_pb.Content.serializeBinaryToWriter
10656
- );
10657
- }
10658
- f = message.getSuggestionList();
10659
- if (f.length > 0) {
10660
- writer.writeRepeatedString(
10661
- 20,
10662
- f
10663
- );
10664
- }
10665
10914
  f = message.getCreateddate();
10666
10915
  if (f != null) {
10667
10916
  writer.writeMessage(
@@ -10685,6 +10934,27 @@ var require_assistant_deployment_pb = __commonJS({
10685
10934
  f
10686
10935
  );
10687
10936
  }
10937
+ f = message.getMaxsessionduration();
10938
+ if (parseInt(f, 10) !== 0) {
10939
+ writer.writeUint64String(
10940
+ 29,
10941
+ f
10942
+ );
10943
+ }
10944
+ f = message.getIdealtimeout();
10945
+ if (parseInt(f, 10) !== 0) {
10946
+ writer.writeUint64String(
10947
+ 30,
10948
+ f
10949
+ );
10950
+ }
10951
+ f = message.getIdealtimeoutmessage();
10952
+ if (f.length > 0) {
10953
+ writer.writeString(
10954
+ 31,
10955
+ f
10956
+ );
10957
+ }
10688
10958
  };
10689
10959
  proto.assistant_api.AssistantDebuggerDeployment.prototype.getId = function() {
10690
10960
  return (
@@ -10743,21 +11013,6 @@ var require_assistant_deployment_pb = __commonJS({
10743
11013
  proto.assistant_api.AssistantDebuggerDeployment.prototype.hasMistake = function() {
10744
11014
  return jspb.Message.getField(this, 11) != null;
10745
11015
  };
10746
- proto.assistant_api.AssistantDebuggerDeployment.prototype.getEnding = function() {
10747
- return (
10748
- /** @type {string} */
10749
- jspb.Message.getFieldWithDefault(this, 12, "")
10750
- );
10751
- };
10752
- proto.assistant_api.AssistantDebuggerDeployment.prototype.setEnding = function(value) {
10753
- return jspb.Message.setField(this, 12, value);
10754
- };
10755
- proto.assistant_api.AssistantDebuggerDeployment.prototype.clearEnding = function() {
10756
- return jspb.Message.setField(this, 12, void 0);
10757
- };
10758
- proto.assistant_api.AssistantDebuggerDeployment.prototype.hasEnding = function() {
10759
- return jspb.Message.getField(this, 12) != null;
10760
- };
10761
11016
  proto.assistant_api.AssistantDebuggerDeployment.prototype.getInputaudio = function() {
10762
11017
  return (
10763
11018
  /** @type{?proto.assistant_api.DeploymentAudioProvider} */
@@ -10788,51 +11043,6 @@ var require_assistant_deployment_pb = __commonJS({
10788
11043
  proto.assistant_api.AssistantDebuggerDeployment.prototype.hasOutputaudio = function() {
10789
11044
  return jspb.Message.getField(this, 14) != null;
10790
11045
  };
10791
- proto.assistant_api.AssistantDebuggerDeployment.prototype.getUrl = function() {
10792
- return (
10793
- /** @type {string} */
10794
- jspb.Message.getFieldWithDefault(this, 15, "")
10795
- );
10796
- };
10797
- proto.assistant_api.AssistantDebuggerDeployment.prototype.setUrl = function(value) {
10798
- return jspb.Message.setOneofField(this, 15, proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_[0], value);
10799
- };
10800
- proto.assistant_api.AssistantDebuggerDeployment.prototype.clearUrl = function() {
10801
- return jspb.Message.setOneofField(this, 15, proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_[0], void 0);
10802
- };
10803
- proto.assistant_api.AssistantDebuggerDeployment.prototype.hasUrl = function() {
10804
- return jspb.Message.getField(this, 15) != null;
10805
- };
10806
- proto.assistant_api.AssistantDebuggerDeployment.prototype.getRaw = function() {
10807
- return (
10808
- /** @type{?proto.Content} */
10809
- jspb.Message.getWrapperField(this, common_pb.Content, 16)
10810
- );
10811
- };
10812
- proto.assistant_api.AssistantDebuggerDeployment.prototype.setRaw = function(value) {
10813
- return jspb.Message.setOneofWrapperField(this, 16, proto.assistant_api.AssistantDebuggerDeployment.oneofGroups_[0], value);
10814
- };
10815
- proto.assistant_api.AssistantDebuggerDeployment.prototype.clearRaw = function() {
10816
- return this.setRaw(void 0);
10817
- };
10818
- proto.assistant_api.AssistantDebuggerDeployment.prototype.hasRaw = function() {
10819
- return jspb.Message.getField(this, 16) != null;
10820
- };
10821
- proto.assistant_api.AssistantDebuggerDeployment.prototype.getSuggestionList = function() {
10822
- return (
10823
- /** @type {!Array<string>} */
10824
- jspb.Message.getRepeatedField(this, 20)
10825
- );
10826
- };
10827
- proto.assistant_api.AssistantDebuggerDeployment.prototype.setSuggestionList = function(value) {
10828
- return jspb.Message.setField(this, 20, value || []);
10829
- };
10830
- proto.assistant_api.AssistantDebuggerDeployment.prototype.addSuggestion = function(value, opt_index) {
10831
- return jspb.Message.addToRepeatedField(this, 20, value, opt_index);
10832
- };
10833
- proto.assistant_api.AssistantDebuggerDeployment.prototype.clearSuggestionList = function() {
10834
- return this.setSuggestionList([]);
10835
- };
10836
11046
  proto.assistant_api.AssistantDebuggerDeployment.prototype.getCreateddate = function() {
10837
11047
  return (
10838
11048
  /** @type{?proto.google.protobuf.Timestamp} */
@@ -10872,6 +11082,33 @@ var require_assistant_deployment_pb = __commonJS({
10872
11082
  proto.assistant_api.AssistantDebuggerDeployment.prototype.setStatus = function(value) {
10873
11083
  return jspb.Message.setProto3StringField(this, 28, value);
10874
11084
  };
11085
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.getMaxsessionduration = function() {
11086
+ return (
11087
+ /** @type {string} */
11088
+ jspb.Message.getFieldWithDefault(this, 29, "0")
11089
+ );
11090
+ };
11091
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.setMaxsessionduration = function(value) {
11092
+ return jspb.Message.setProto3StringIntField(this, 29, value);
11093
+ };
11094
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.getIdealtimeout = function() {
11095
+ return (
11096
+ /** @type {string} */
11097
+ jspb.Message.getFieldWithDefault(this, 30, "0")
11098
+ );
11099
+ };
11100
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeout = function(value) {
11101
+ return jspb.Message.setProto3StringIntField(this, 30, value);
11102
+ };
11103
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.getIdealtimeoutmessage = function() {
11104
+ return (
11105
+ /** @type {string} */
11106
+ jspb.Message.getFieldWithDefault(this, 31, "")
11107
+ );
11108
+ };
11109
+ proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeoutmessage = function(value) {
11110
+ return jspb.Message.setProto3StringField(this, 31, value);
11111
+ };
10875
11112
  if (jspb.Message.GENERATE_TO_OBJECT) {
10876
11113
  proto.assistant_api.AssistantApiDeployment.prototype.toObject = function(opt_includeInstance) {
10877
11114
  return proto.assistant_api.AssistantApiDeployment.toObject(opt_includeInstance, this);
@@ -10882,12 +11119,14 @@ var require_assistant_deployment_pb = __commonJS({
10882
11119
  assistantid: jspb.Message.getFieldWithDefault(msg, 5, "0"),
10883
11120
  greeting: jspb.Message.getFieldWithDefault(msg, 10, ""),
10884
11121
  mistake: jspb.Message.getFieldWithDefault(msg, 11, ""),
10885
- ending: jspb.Message.getFieldWithDefault(msg, 12, ""),
10886
11122
  inputaudio: (f = msg.getInputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10887
11123
  outputaudio: (f = msg.getOutputaudio()) && proto.assistant_api.DeploymentAudioProvider.toObject(includeInstance, f),
10888
11124
  createddate: (f = msg.getCreateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10889
11125
  updateddate: (f = msg.getUpdateddate()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
10890
- status: jspb.Message.getFieldWithDefault(msg, 28, "")
11126
+ status: jspb.Message.getFieldWithDefault(msg, 28, ""),
11127
+ maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
11128
+ idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
11129
+ idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
10891
11130
  };
10892
11131
  if (includeInstance) {
10893
11132
  obj.$jspbMessageInstance = msg;
@@ -10935,13 +11174,6 @@ var require_assistant_deployment_pb = __commonJS({
10935
11174
  );
10936
11175
  msg.setMistake(value);
10937
11176
  break;
10938
- case 12:
10939
- var value = (
10940
- /** @type {string} */
10941
- reader.readString()
10942
- );
10943
- msg.setEnding(value);
10944
- break;
10945
11177
  case 13:
10946
11178
  var value = new proto.assistant_api.DeploymentAudioProvider();
10947
11179
  reader.readMessage(value, proto.assistant_api.DeploymentAudioProvider.deserializeBinaryFromReader);
@@ -10969,6 +11201,27 @@ var require_assistant_deployment_pb = __commonJS({
10969
11201
  );
10970
11202
  msg.setStatus(value);
10971
11203
  break;
11204
+ case 29:
11205
+ var value = (
11206
+ /** @type {string} */
11207
+ reader.readUint64String()
11208
+ );
11209
+ msg.setMaxsessionduration(value);
11210
+ break;
11211
+ case 30:
11212
+ var value = (
11213
+ /** @type {string} */
11214
+ reader.readUint64String()
11215
+ );
11216
+ msg.setIdealtimeout(value);
11217
+ break;
11218
+ case 31:
11219
+ var value = (
11220
+ /** @type {string} */
11221
+ reader.readString()
11222
+ );
11223
+ msg.setIdealtimeoutmessage(value);
11224
+ break;
10972
11225
  default:
10973
11226
  reader.skipField();
10974
11227
  break;
@@ -11013,14 +11266,6 @@ var require_assistant_deployment_pb = __commonJS({
11013
11266
  f
11014
11267
  );
11015
11268
  }
11016
- f = /** @type {string} */
11017
- jspb.Message.getField(message, 12);
11018
- if (f != null) {
11019
- writer.writeString(
11020
- 12,
11021
- f
11022
- );
11023
- }
11024
11269
  f = message.getInputaudio();
11025
11270
  if (f != null) {
11026
11271
  writer.writeMessage(
@@ -11060,6 +11305,27 @@ var require_assistant_deployment_pb = __commonJS({
11060
11305
  f
11061
11306
  );
11062
11307
  }
11308
+ f = message.getMaxsessionduration();
11309
+ if (parseInt(f, 10) !== 0) {
11310
+ writer.writeUint64String(
11311
+ 29,
11312
+ f
11313
+ );
11314
+ }
11315
+ f = message.getIdealtimeout();
11316
+ if (parseInt(f, 10) !== 0) {
11317
+ writer.writeUint64String(
11318
+ 30,
11319
+ f
11320
+ );
11321
+ }
11322
+ f = message.getIdealtimeoutmessage();
11323
+ if (f.length > 0) {
11324
+ writer.writeString(
11325
+ 31,
11326
+ f
11327
+ );
11328
+ }
11063
11329
  };
11064
11330
  proto.assistant_api.AssistantApiDeployment.prototype.getId = function() {
11065
11331
  return (
@@ -11109,21 +11375,6 @@ var require_assistant_deployment_pb = __commonJS({
11109
11375
  proto.assistant_api.AssistantApiDeployment.prototype.hasMistake = function() {
11110
11376
  return jspb.Message.getField(this, 11) != null;
11111
11377
  };
11112
- proto.assistant_api.AssistantApiDeployment.prototype.getEnding = function() {
11113
- return (
11114
- /** @type {string} */
11115
- jspb.Message.getFieldWithDefault(this, 12, "")
11116
- );
11117
- };
11118
- proto.assistant_api.AssistantApiDeployment.prototype.setEnding = function(value) {
11119
- return jspb.Message.setField(this, 12, value);
11120
- };
11121
- proto.assistant_api.AssistantApiDeployment.prototype.clearEnding = function() {
11122
- return jspb.Message.setField(this, 12, void 0);
11123
- };
11124
- proto.assistant_api.AssistantApiDeployment.prototype.hasEnding = function() {
11125
- return jspb.Message.getField(this, 12) != null;
11126
- };
11127
11378
  proto.assistant_api.AssistantApiDeployment.prototype.getInputaudio = function() {
11128
11379
  return (
11129
11380
  /** @type{?proto.assistant_api.DeploymentAudioProvider} */
@@ -11193,6 +11444,33 @@ var require_assistant_deployment_pb = __commonJS({
11193
11444
  proto.assistant_api.AssistantApiDeployment.prototype.setStatus = function(value) {
11194
11445
  return jspb.Message.setProto3StringField(this, 28, value);
11195
11446
  };
11447
+ proto.assistant_api.AssistantApiDeployment.prototype.getMaxsessionduration = function() {
11448
+ return (
11449
+ /** @type {string} */
11450
+ jspb.Message.getFieldWithDefault(this, 29, "0")
11451
+ );
11452
+ };
11453
+ proto.assistant_api.AssistantApiDeployment.prototype.setMaxsessionduration = function(value) {
11454
+ return jspb.Message.setProto3StringIntField(this, 29, value);
11455
+ };
11456
+ proto.assistant_api.AssistantApiDeployment.prototype.getIdealtimeout = function() {
11457
+ return (
11458
+ /** @type {string} */
11459
+ jspb.Message.getFieldWithDefault(this, 30, "0")
11460
+ );
11461
+ };
11462
+ proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeout = function(value) {
11463
+ return jspb.Message.setProto3StringIntField(this, 30, value);
11464
+ };
11465
+ proto.assistant_api.AssistantApiDeployment.prototype.getIdealtimeoutmessage = function() {
11466
+ return (
11467
+ /** @type {string} */
11468
+ jspb.Message.getFieldWithDefault(this, 31, "")
11469
+ );
11470
+ };
11471
+ proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeoutmessage = function(value) {
11472
+ return jspb.Message.setProto3StringField(this, 31, value);
11473
+ };
11196
11474
  proto.assistant_api.CreateAssistantDeploymentRequest.oneofGroups_ = [[1, 2, 3, 4, 5]];
11197
11475
  proto.assistant_api.CreateAssistantDeploymentRequest.DeploymentCase = {
11198
11476
  DEPLOYMENT_NOT_SET: 0,
@@ -21355,7 +21633,6 @@ var require_assistant_provider_pb = __commonJS({
21355
21633
  proto.assistant_api.CreateAssistantProviderRequest.CreateAssistantProviderModel.toObject = function(includeInstance, msg) {
21356
21634
  var f, obj = {
21357
21635
  template: (f = msg.getTemplate()) && common_pb.TextChatCompletePrompt.toObject(includeInstance, f),
21358
- modelproviderid: jspb.Message.getFieldWithDefault(msg, 21, "0"),
21359
21636
  modelprovidername: jspb.Message.getFieldWithDefault(msg, 22, ""),
21360
21637
  assistantmodeloptionsList: jspb.Message.toObjectList(
21361
21638
  msg.getAssistantmodeloptionsList(),
@@ -21386,13 +21663,6 @@ var require_assistant_provider_pb = __commonJS({
21386
21663
  reader.readMessage(value, common_pb.TextChatCompletePrompt.deserializeBinaryFromReader);
21387
21664
  msg.setTemplate(value);
21388
21665
  break;
21389
- case 21:
21390
- var value = (
21391
- /** @type {string} */
21392
- reader.readUint64String()
21393
- );
21394
- msg.setModelproviderid(value);
21395
- break;
21396
21666
  case 22:
21397
21667
  var value = (
21398
21668
  /** @type {string} */
@@ -21427,13 +21697,6 @@ var require_assistant_provider_pb = __commonJS({
21427
21697
  common_pb.TextChatCompletePrompt.serializeBinaryToWriter
21428
21698
  );
21429
21699
  }
21430
- f = message.getModelproviderid();
21431
- if (parseInt(f, 10) !== 0) {
21432
- writer.writeUint64String(
21433
- 21,
21434
- f
21435
- );
21436
- }
21437
21700
  f = message.getModelprovidername();
21438
21701
  if (f.length > 0) {
21439
21702
  writer.writeString(
@@ -21465,15 +21728,6 @@ var require_assistant_provider_pb = __commonJS({
21465
21728
  proto.assistant_api.CreateAssistantProviderRequest.CreateAssistantProviderModel.prototype.hasTemplate = function() {
21466
21729
  return jspb.Message.getField(this, 20) != null;
21467
21730
  };
21468
- proto.assistant_api.CreateAssistantProviderRequest.CreateAssistantProviderModel.prototype.getModelproviderid = function() {
21469
- return (
21470
- /** @type {string} */
21471
- jspb.Message.getFieldWithDefault(this, 21, "0")
21472
- );
21473
- };
21474
- proto.assistant_api.CreateAssistantProviderRequest.CreateAssistantProviderModel.prototype.setModelproviderid = function(value) {
21475
- return jspb.Message.setProto3StringIntField(this, 21, value);
21476
- };
21477
21731
  proto.assistant_api.CreateAssistantProviderRequest.CreateAssistantProviderModel.prototype.getModelprovidername = function() {
21478
21732
  return (
21479
21733
  /** @type {string} */
@@ -22552,7 +22806,6 @@ var require_assistant_provider_pb = __commonJS({
22552
22806
  template: (f = msg.getTemplate()) && common_pb.TextChatCompletePrompt.toObject(includeInstance, f),
22553
22807
  description: jspb.Message.getFieldWithDefault(msg, 3, ""),
22554
22808
  assistantid: jspb.Message.getFieldWithDefault(msg, 4, 0),
22555
- modelproviderid: jspb.Message.getFieldWithDefault(msg, 6, "0"),
22556
22809
  modelprovidername: jspb.Message.getFieldWithDefault(msg, 7, ""),
22557
22810
  assistantmodeloptionsList: jspb.Message.toObjectList(
22558
22811
  msg.getAssistantmodeloptionsList(),
@@ -22611,13 +22864,6 @@ var require_assistant_provider_pb = __commonJS({
22611
22864
  );
22612
22865
  msg.setAssistantid(value);
22613
22866
  break;
22614
- case 6:
22615
- var value = (
22616
- /** @type {string} */
22617
- reader.readUint64String()
22618
- );
22619
- msg.setModelproviderid(value);
22620
- break;
22621
22867
  case 7:
22622
22868
  var value = (
22623
22869
  /** @type {string} */
@@ -22714,13 +22960,6 @@ var require_assistant_provider_pb = __commonJS({
22714
22960
  f
22715
22961
  );
22716
22962
  }
22717
- f = message.getModelproviderid();
22718
- if (parseInt(f, 10) !== 0) {
22719
- writer.writeUint64String(
22720
- 6,
22721
- f
22722
- );
22723
- }
22724
22963
  f = message.getModelprovidername();
22725
22964
  if (f.length > 0) {
22726
22965
  writer.writeString(
@@ -22832,15 +23071,6 @@ var require_assistant_provider_pb = __commonJS({
22832
23071
  proto.assistant_api.AssistantProviderModel.prototype.setAssistantid = function(value) {
22833
23072
  return jspb.Message.setProto3IntField(this, 4, value);
22834
23073
  };
22835
- proto.assistant_api.AssistantProviderModel.prototype.getModelproviderid = function() {
22836
- return (
22837
- /** @type {string} */
22838
- jspb.Message.getFieldWithDefault(this, 6, "0")
22839
- );
22840
- };
22841
- proto.assistant_api.AssistantProviderModel.prototype.setModelproviderid = function(value) {
22842
- return jspb.Message.setProto3StringIntField(this, 6, value);
22843
- };
22844
23074
  proto.assistant_api.AssistantProviderModel.prototype.getModelprovidername = function() {
22845
23075
  return (
22846
23076
  /** @type {string} */
@@ -29099,7 +29329,6 @@ var VoiceAgent = class extends Agent {
29099
29329
  inputChannel = "audio" /* Audio */;
29100
29330
  outputChannel = "audio" /* Audio */;
29101
29331
  /**
29102
- * Creates a new Room, the primary construct for a LiveKit session.
29103
29332
  * @param options
29104
29333
  */
29105
29334
  constructor(connection, agentConfig, agentCallback) {
@@ -29942,4 +30171,4 @@ export {
29942
30171
  useSelectInputDeviceAgent,
29943
30172
  DeviceSelectorComponent
29944
30173
  };
29945
- //# sourceMappingURL=chunk-TYICJNMK.mjs.map
30174
+ //# sourceMappingURL=chunk-DRBNQMZR.mjs.map