@rapidaai/react 1.1.48 → 1.1.49
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/{chunk-K6VHOUSP.mjs → chunk-JA65S2AA.mjs} +126 -6
- package/dist/chunk-JA65S2AA.mjs.map +1 -0
- package/dist/components/device-selector.d.mts +1 -1
- package/dist/components/device-selector.d.ts +1 -1
- package/dist/components/device-selector.js +125 -5
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-CsIo3daE.d.mts → device-selector-o07ACCD6.d.mts} +20 -0
- package/dist/{device-selector-CsIo3daE.d.ts → device-selector-o07ACCD6.d.ts} +20 -0
- package/dist/index.d.mts +3 -81
- package/dist/index.d.ts +3 -81
- package/dist/index.js +320 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +196 -28
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-K6VHOUSP.mjs.map +0 -1
|
@@ -9304,7 +9304,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9304
9304
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
9305
9305
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
9306
9306
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
9307
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
9307
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
9308
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
9308
9309
|
};
|
|
9309
9310
|
if (includeInstance) {
|
|
9310
9311
|
obj.$jspbMessageInstance = msg;
|
|
@@ -9442,6 +9443,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9442
9443
|
);
|
|
9443
9444
|
msg.setIdealtimeoutmessage(value);
|
|
9444
9445
|
break;
|
|
9446
|
+
case 32:
|
|
9447
|
+
var value = (
|
|
9448
|
+
/** @type {string} */
|
|
9449
|
+
reader.readUint64String()
|
|
9450
|
+
);
|
|
9451
|
+
msg.setIdealtimeoutbackoff(value);
|
|
9452
|
+
break;
|
|
9445
9453
|
default:
|
|
9446
9454
|
reader.skipField();
|
|
9447
9455
|
break;
|
|
@@ -9588,6 +9596,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9588
9596
|
f
|
|
9589
9597
|
);
|
|
9590
9598
|
}
|
|
9599
|
+
f = message.getIdealtimeoutbackoff();
|
|
9600
|
+
if (parseInt(f, 10) !== 0) {
|
|
9601
|
+
writer.writeUint64String(
|
|
9602
|
+
32,
|
|
9603
|
+
f
|
|
9604
|
+
);
|
|
9605
|
+
}
|
|
9591
9606
|
};
|
|
9592
9607
|
proto.assistant_api.AssistantWebpluginDeployment.prototype.getId = function() {
|
|
9593
9608
|
return (
|
|
@@ -9793,6 +9808,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9793
9808
|
proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
9794
9809
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
9795
9810
|
};
|
|
9811
|
+
proto.assistant_api.AssistantWebpluginDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
9812
|
+
return (
|
|
9813
|
+
/** @type {string} */
|
|
9814
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
9815
|
+
);
|
|
9816
|
+
};
|
|
9817
|
+
proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
9818
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
9819
|
+
};
|
|
9796
9820
|
proto.assistant_api.AssistantPhoneDeployment.repeatedFields_ = [17];
|
|
9797
9821
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
9798
9822
|
proto.assistant_api.AssistantPhoneDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
@@ -9817,7 +9841,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9817
9841
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
9818
9842
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
9819
9843
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
9820
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
9844
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
9845
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
9821
9846
|
};
|
|
9822
9847
|
if (includeInstance) {
|
|
9823
9848
|
obj.$jspbMessageInstance = msg;
|
|
@@ -9925,6 +9950,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9925
9950
|
);
|
|
9926
9951
|
msg.setIdealtimeoutmessage(value);
|
|
9927
9952
|
break;
|
|
9953
|
+
case 32:
|
|
9954
|
+
var value = (
|
|
9955
|
+
/** @type {string} */
|
|
9956
|
+
reader.readUint64String()
|
|
9957
|
+
);
|
|
9958
|
+
msg.setIdealtimeoutbackoff(value);
|
|
9959
|
+
break;
|
|
9928
9960
|
default:
|
|
9929
9961
|
reader.skipField();
|
|
9930
9962
|
break;
|
|
@@ -10044,6 +10076,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10044
10076
|
f
|
|
10045
10077
|
);
|
|
10046
10078
|
}
|
|
10079
|
+
f = message.getIdealtimeoutbackoff();
|
|
10080
|
+
if (parseInt(f, 10) !== 0) {
|
|
10081
|
+
writer.writeUint64String(
|
|
10082
|
+
32,
|
|
10083
|
+
f
|
|
10084
|
+
);
|
|
10085
|
+
}
|
|
10047
10086
|
};
|
|
10048
10087
|
proto.assistant_api.AssistantPhoneDeployment.prototype.getId = function() {
|
|
10049
10088
|
return (
|
|
@@ -10213,6 +10252,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10213
10252
|
proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
10214
10253
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
10215
10254
|
};
|
|
10255
|
+
proto.assistant_api.AssistantPhoneDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
10256
|
+
return (
|
|
10257
|
+
/** @type {string} */
|
|
10258
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
10259
|
+
);
|
|
10260
|
+
};
|
|
10261
|
+
proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
10262
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
10263
|
+
};
|
|
10216
10264
|
proto.assistant_api.AssistantWhatsappDeployment.repeatedFields_ = [17];
|
|
10217
10265
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
10218
10266
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
@@ -10238,7 +10286,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10238
10286
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
10239
10287
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
10240
10288
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
10241
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
10289
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
10290
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
10242
10291
|
};
|
|
10243
10292
|
if (includeInstance) {
|
|
10244
10293
|
obj.$jspbMessageInstance = msg;
|
|
@@ -10353,6 +10402,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10353
10402
|
);
|
|
10354
10403
|
msg.setIdealtimeoutmessage(value);
|
|
10355
10404
|
break;
|
|
10405
|
+
case 32:
|
|
10406
|
+
var value = (
|
|
10407
|
+
/** @type {string} */
|
|
10408
|
+
reader.readUint64String()
|
|
10409
|
+
);
|
|
10410
|
+
msg.setIdealtimeoutbackoff(value);
|
|
10411
|
+
break;
|
|
10356
10412
|
default:
|
|
10357
10413
|
reader.skipField();
|
|
10358
10414
|
break;
|
|
@@ -10479,6 +10535,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10479
10535
|
f
|
|
10480
10536
|
);
|
|
10481
10537
|
}
|
|
10538
|
+
f = message.getIdealtimeoutbackoff();
|
|
10539
|
+
if (parseInt(f, 10) !== 0) {
|
|
10540
|
+
writer.writeUint64String(
|
|
10541
|
+
32,
|
|
10542
|
+
f
|
|
10543
|
+
);
|
|
10544
|
+
}
|
|
10482
10545
|
};
|
|
10483
10546
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.getId = function() {
|
|
10484
10547
|
return (
|
|
@@ -10657,6 +10720,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10657
10720
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
10658
10721
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
10659
10722
|
};
|
|
10723
|
+
proto.assistant_api.AssistantWhatsappDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
10724
|
+
return (
|
|
10725
|
+
/** @type {string} */
|
|
10726
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
10727
|
+
);
|
|
10728
|
+
};
|
|
10729
|
+
proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
10730
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
10731
|
+
};
|
|
10660
10732
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
10661
10733
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
10662
10734
|
return proto.assistant_api.AssistantDebuggerDeployment.toObject(opt_includeInstance, this);
|
|
@@ -10675,7 +10747,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10675
10747
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
10676
10748
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
10677
10749
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
10678
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
10750
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
10751
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
10679
10752
|
};
|
|
10680
10753
|
if (includeInstance) {
|
|
10681
10754
|
obj.$jspbMessageInstance = msg;
|
|
@@ -10778,6 +10851,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10778
10851
|
);
|
|
10779
10852
|
msg.setIdealtimeoutmessage(value);
|
|
10780
10853
|
break;
|
|
10854
|
+
case 32:
|
|
10855
|
+
var value = (
|
|
10856
|
+
/** @type {string} */
|
|
10857
|
+
reader.readUint64String()
|
|
10858
|
+
);
|
|
10859
|
+
msg.setIdealtimeoutbackoff(value);
|
|
10860
|
+
break;
|
|
10781
10861
|
default:
|
|
10782
10862
|
reader.skipField();
|
|
10783
10863
|
break;
|
|
@@ -10889,6 +10969,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10889
10969
|
f
|
|
10890
10970
|
);
|
|
10891
10971
|
}
|
|
10972
|
+
f = message.getIdealtimeoutbackoff();
|
|
10973
|
+
if (parseInt(f, 10) !== 0) {
|
|
10974
|
+
writer.writeUint64String(
|
|
10975
|
+
32,
|
|
10976
|
+
f
|
|
10977
|
+
);
|
|
10978
|
+
}
|
|
10892
10979
|
};
|
|
10893
10980
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.getId = function() {
|
|
10894
10981
|
return (
|
|
@@ -11043,6 +11130,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11043
11130
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
11044
11131
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
11045
11132
|
};
|
|
11133
|
+
proto.assistant_api.AssistantDebuggerDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
11134
|
+
return (
|
|
11135
|
+
/** @type {string} */
|
|
11136
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
11137
|
+
);
|
|
11138
|
+
};
|
|
11139
|
+
proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
11140
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
11141
|
+
};
|
|
11046
11142
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
11047
11143
|
proto.assistant_api.AssistantApiDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
11048
11144
|
return proto.assistant_api.AssistantApiDeployment.toObject(opt_includeInstance, this);
|
|
@@ -11060,7 +11156,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11060
11156
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
11061
11157
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
11062
11158
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
11063
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
11159
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
11160
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
11064
11161
|
};
|
|
11065
11162
|
if (includeInstance) {
|
|
11066
11163
|
obj.$jspbMessageInstance = msg;
|
|
@@ -11156,6 +11253,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11156
11253
|
);
|
|
11157
11254
|
msg.setIdealtimeoutmessage(value);
|
|
11158
11255
|
break;
|
|
11256
|
+
case 32:
|
|
11257
|
+
var value = (
|
|
11258
|
+
/** @type {string} */
|
|
11259
|
+
reader.readUint64String()
|
|
11260
|
+
);
|
|
11261
|
+
msg.setIdealtimeoutbackoff(value);
|
|
11262
|
+
break;
|
|
11159
11263
|
default:
|
|
11160
11264
|
reader.skipField();
|
|
11161
11265
|
break;
|
|
@@ -11260,6 +11364,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11260
11364
|
f
|
|
11261
11365
|
);
|
|
11262
11366
|
}
|
|
11367
|
+
f = message.getIdealtimeoutbackoff();
|
|
11368
|
+
if (parseInt(f, 10) !== 0) {
|
|
11369
|
+
writer.writeUint64String(
|
|
11370
|
+
32,
|
|
11371
|
+
f
|
|
11372
|
+
);
|
|
11373
|
+
}
|
|
11263
11374
|
};
|
|
11264
11375
|
proto.assistant_api.AssistantApiDeployment.prototype.getId = function() {
|
|
11265
11376
|
return (
|
|
@@ -11405,6 +11516,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11405
11516
|
proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
11406
11517
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
11407
11518
|
};
|
|
11519
|
+
proto.assistant_api.AssistantApiDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
11520
|
+
return (
|
|
11521
|
+
/** @type {string} */
|
|
11522
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
11523
|
+
);
|
|
11524
|
+
};
|
|
11525
|
+
proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
11526
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
11527
|
+
};
|
|
11408
11528
|
proto.assistant_api.CreateAssistantDeploymentRequest.oneofGroups_ = [[1, 2, 3, 4, 5]];
|
|
11409
11529
|
proto.assistant_api.CreateAssistantDeploymentRequest.DeploymentCase = {
|
|
11410
11530
|
DEPLOYMENT_NOT_SET: 0,
|