@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
|
@@ -9279,7 +9279,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9279
9279
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
9280
9280
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
9281
9281
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
9282
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
9282
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
9283
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
9283
9284
|
};
|
|
9284
9285
|
if (includeInstance) {
|
|
9285
9286
|
obj.$jspbMessageInstance = msg;
|
|
@@ -9417,6 +9418,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9417
9418
|
);
|
|
9418
9419
|
msg.setIdealtimeoutmessage(value);
|
|
9419
9420
|
break;
|
|
9421
|
+
case 32:
|
|
9422
|
+
var value = (
|
|
9423
|
+
/** @type {string} */
|
|
9424
|
+
reader.readUint64String()
|
|
9425
|
+
);
|
|
9426
|
+
msg.setIdealtimeoutbackoff(value);
|
|
9427
|
+
break;
|
|
9420
9428
|
default:
|
|
9421
9429
|
reader.skipField();
|
|
9422
9430
|
break;
|
|
@@ -9563,6 +9571,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9563
9571
|
f
|
|
9564
9572
|
);
|
|
9565
9573
|
}
|
|
9574
|
+
f = message.getIdealtimeoutbackoff();
|
|
9575
|
+
if (parseInt(f, 10) !== 0) {
|
|
9576
|
+
writer.writeUint64String(
|
|
9577
|
+
32,
|
|
9578
|
+
f
|
|
9579
|
+
);
|
|
9580
|
+
}
|
|
9566
9581
|
};
|
|
9567
9582
|
proto.assistant_api.AssistantWebpluginDeployment.prototype.getId = function() {
|
|
9568
9583
|
return (
|
|
@@ -9768,6 +9783,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9768
9783
|
proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
9769
9784
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
9770
9785
|
};
|
|
9786
|
+
proto.assistant_api.AssistantWebpluginDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
9787
|
+
return (
|
|
9788
|
+
/** @type {string} */
|
|
9789
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
9790
|
+
);
|
|
9791
|
+
};
|
|
9792
|
+
proto.assistant_api.AssistantWebpluginDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
9793
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
9794
|
+
};
|
|
9771
9795
|
proto.assistant_api.AssistantPhoneDeployment.repeatedFields_ = [17];
|
|
9772
9796
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
9773
9797
|
proto.assistant_api.AssistantPhoneDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
@@ -9792,7 +9816,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9792
9816
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
9793
9817
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
9794
9818
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
9795
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
9819
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
9820
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
9796
9821
|
};
|
|
9797
9822
|
if (includeInstance) {
|
|
9798
9823
|
obj.$jspbMessageInstance = msg;
|
|
@@ -9900,6 +9925,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
9900
9925
|
);
|
|
9901
9926
|
msg.setIdealtimeoutmessage(value);
|
|
9902
9927
|
break;
|
|
9928
|
+
case 32:
|
|
9929
|
+
var value = (
|
|
9930
|
+
/** @type {string} */
|
|
9931
|
+
reader.readUint64String()
|
|
9932
|
+
);
|
|
9933
|
+
msg.setIdealtimeoutbackoff(value);
|
|
9934
|
+
break;
|
|
9903
9935
|
default:
|
|
9904
9936
|
reader.skipField();
|
|
9905
9937
|
break;
|
|
@@ -10019,6 +10051,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10019
10051
|
f
|
|
10020
10052
|
);
|
|
10021
10053
|
}
|
|
10054
|
+
f = message.getIdealtimeoutbackoff();
|
|
10055
|
+
if (parseInt(f, 10) !== 0) {
|
|
10056
|
+
writer.writeUint64String(
|
|
10057
|
+
32,
|
|
10058
|
+
f
|
|
10059
|
+
);
|
|
10060
|
+
}
|
|
10022
10061
|
};
|
|
10023
10062
|
proto.assistant_api.AssistantPhoneDeployment.prototype.getId = function() {
|
|
10024
10063
|
return (
|
|
@@ -10188,6 +10227,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10188
10227
|
proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
10189
10228
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
10190
10229
|
};
|
|
10230
|
+
proto.assistant_api.AssistantPhoneDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
10231
|
+
return (
|
|
10232
|
+
/** @type {string} */
|
|
10233
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
10234
|
+
);
|
|
10235
|
+
};
|
|
10236
|
+
proto.assistant_api.AssistantPhoneDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
10237
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
10238
|
+
};
|
|
10191
10239
|
proto.assistant_api.AssistantWhatsappDeployment.repeatedFields_ = [17];
|
|
10192
10240
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
10193
10241
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
@@ -10213,7 +10261,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10213
10261
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
10214
10262
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
10215
10263
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
10216
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
10264
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
10265
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
10217
10266
|
};
|
|
10218
10267
|
if (includeInstance) {
|
|
10219
10268
|
obj.$jspbMessageInstance = msg;
|
|
@@ -10328,6 +10377,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10328
10377
|
);
|
|
10329
10378
|
msg.setIdealtimeoutmessage(value);
|
|
10330
10379
|
break;
|
|
10380
|
+
case 32:
|
|
10381
|
+
var value = (
|
|
10382
|
+
/** @type {string} */
|
|
10383
|
+
reader.readUint64String()
|
|
10384
|
+
);
|
|
10385
|
+
msg.setIdealtimeoutbackoff(value);
|
|
10386
|
+
break;
|
|
10331
10387
|
default:
|
|
10332
10388
|
reader.skipField();
|
|
10333
10389
|
break;
|
|
@@ -10454,6 +10510,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10454
10510
|
f
|
|
10455
10511
|
);
|
|
10456
10512
|
}
|
|
10513
|
+
f = message.getIdealtimeoutbackoff();
|
|
10514
|
+
if (parseInt(f, 10) !== 0) {
|
|
10515
|
+
writer.writeUint64String(
|
|
10516
|
+
32,
|
|
10517
|
+
f
|
|
10518
|
+
);
|
|
10519
|
+
}
|
|
10457
10520
|
};
|
|
10458
10521
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.getId = function() {
|
|
10459
10522
|
return (
|
|
@@ -10632,6 +10695,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10632
10695
|
proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
10633
10696
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
10634
10697
|
};
|
|
10698
|
+
proto.assistant_api.AssistantWhatsappDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
10699
|
+
return (
|
|
10700
|
+
/** @type {string} */
|
|
10701
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
10702
|
+
);
|
|
10703
|
+
};
|
|
10704
|
+
proto.assistant_api.AssistantWhatsappDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
10705
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
10706
|
+
};
|
|
10635
10707
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
10636
10708
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
10637
10709
|
return proto.assistant_api.AssistantDebuggerDeployment.toObject(opt_includeInstance, this);
|
|
@@ -10650,7 +10722,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10650
10722
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
10651
10723
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
10652
10724
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
10653
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
10725
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
10726
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
10654
10727
|
};
|
|
10655
10728
|
if (includeInstance) {
|
|
10656
10729
|
obj.$jspbMessageInstance = msg;
|
|
@@ -10753,6 +10826,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10753
10826
|
);
|
|
10754
10827
|
msg.setIdealtimeoutmessage(value);
|
|
10755
10828
|
break;
|
|
10829
|
+
case 32:
|
|
10830
|
+
var value = (
|
|
10831
|
+
/** @type {string} */
|
|
10832
|
+
reader.readUint64String()
|
|
10833
|
+
);
|
|
10834
|
+
msg.setIdealtimeoutbackoff(value);
|
|
10835
|
+
break;
|
|
10756
10836
|
default:
|
|
10757
10837
|
reader.skipField();
|
|
10758
10838
|
break;
|
|
@@ -10864,6 +10944,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
10864
10944
|
f
|
|
10865
10945
|
);
|
|
10866
10946
|
}
|
|
10947
|
+
f = message.getIdealtimeoutbackoff();
|
|
10948
|
+
if (parseInt(f, 10) !== 0) {
|
|
10949
|
+
writer.writeUint64String(
|
|
10950
|
+
32,
|
|
10951
|
+
f
|
|
10952
|
+
);
|
|
10953
|
+
}
|
|
10867
10954
|
};
|
|
10868
10955
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.getId = function() {
|
|
10869
10956
|
return (
|
|
@@ -11018,6 +11105,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11018
11105
|
proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
11019
11106
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
11020
11107
|
};
|
|
11108
|
+
proto.assistant_api.AssistantDebuggerDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
11109
|
+
return (
|
|
11110
|
+
/** @type {string} */
|
|
11111
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
11112
|
+
);
|
|
11113
|
+
};
|
|
11114
|
+
proto.assistant_api.AssistantDebuggerDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
11115
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
11116
|
+
};
|
|
11021
11117
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
11022
11118
|
proto.assistant_api.AssistantApiDeployment.prototype.toObject = function(opt_includeInstance) {
|
|
11023
11119
|
return proto.assistant_api.AssistantApiDeployment.toObject(opt_includeInstance, this);
|
|
@@ -11035,7 +11131,8 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11035
11131
|
status: jspb.Message.getFieldWithDefault(msg, 28, ""),
|
|
11036
11132
|
maxsessionduration: jspb.Message.getFieldWithDefault(msg, 29, "0"),
|
|
11037
11133
|
idealtimeout: jspb.Message.getFieldWithDefault(msg, 30, "0"),
|
|
11038
|
-
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
11134
|
+
idealtimeoutmessage: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
11135
|
+
idealtimeoutbackoff: jspb.Message.getFieldWithDefault(msg, 32, "0")
|
|
11039
11136
|
};
|
|
11040
11137
|
if (includeInstance) {
|
|
11041
11138
|
obj.$jspbMessageInstance = msg;
|
|
@@ -11131,6 +11228,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11131
11228
|
);
|
|
11132
11229
|
msg.setIdealtimeoutmessage(value);
|
|
11133
11230
|
break;
|
|
11231
|
+
case 32:
|
|
11232
|
+
var value = (
|
|
11233
|
+
/** @type {string} */
|
|
11234
|
+
reader.readUint64String()
|
|
11235
|
+
);
|
|
11236
|
+
msg.setIdealtimeoutbackoff(value);
|
|
11237
|
+
break;
|
|
11134
11238
|
default:
|
|
11135
11239
|
reader.skipField();
|
|
11136
11240
|
break;
|
|
@@ -11235,6 +11339,13 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11235
11339
|
f
|
|
11236
11340
|
);
|
|
11237
11341
|
}
|
|
11342
|
+
f = message.getIdealtimeoutbackoff();
|
|
11343
|
+
if (parseInt(f, 10) !== 0) {
|
|
11344
|
+
writer.writeUint64String(
|
|
11345
|
+
32,
|
|
11346
|
+
f
|
|
11347
|
+
);
|
|
11348
|
+
}
|
|
11238
11349
|
};
|
|
11239
11350
|
proto.assistant_api.AssistantApiDeployment.prototype.getId = function() {
|
|
11240
11351
|
return (
|
|
@@ -11380,6 +11491,15 @@ var require_assistant_deployment_pb = __commonJS({
|
|
|
11380
11491
|
proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeoutmessage = function(value) {
|
|
11381
11492
|
return jspb.Message.setProto3StringField(this, 31, value);
|
|
11382
11493
|
};
|
|
11494
|
+
proto.assistant_api.AssistantApiDeployment.prototype.getIdealtimeoutbackoff = function() {
|
|
11495
|
+
return (
|
|
11496
|
+
/** @type {string} */
|
|
11497
|
+
jspb.Message.getFieldWithDefault(this, 32, "0")
|
|
11498
|
+
);
|
|
11499
|
+
};
|
|
11500
|
+
proto.assistant_api.AssistantApiDeployment.prototype.setIdealtimeoutbackoff = function(value) {
|
|
11501
|
+
return jspb.Message.setProto3StringIntField(this, 32, value);
|
|
11502
|
+
};
|
|
11383
11503
|
proto.assistant_api.CreateAssistantDeploymentRequest.oneofGroups_ = [[1, 2, 3, 4, 5]];
|
|
11384
11504
|
proto.assistant_api.CreateAssistantDeploymentRequest.DeploymentCase = {
|
|
11385
11505
|
DEPLOYMENT_NOT_SET: 0,
|
|
@@ -30093,4 +30213,4 @@ export {
|
|
|
30093
30213
|
useSelectInputDeviceAgent,
|
|
30094
30214
|
DeviceSelectorComponent
|
|
30095
30215
|
};
|
|
30096
|
-
//# sourceMappingURL=chunk-
|
|
30216
|
+
//# sourceMappingURL=chunk-JA65S2AA.mjs.map
|