@rapidaai/react 1.1.39 → 1.1.41
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-CUTI5FQX.mjs → chunk-QQVXG47Q.mjs} +12 -10
- package/dist/{chunk-CUTI5FQX.mjs.map → chunk-QQVXG47Q.mjs.map} +1 -1
- package/dist/components/device-selector.d.mts +1 -1
- package/dist/components/device-selector.d.ts +1 -1
- package/dist/components/device-selector.js.map +1 -1
- package/dist/components/device-selector.mjs +1 -1
- package/dist/{device-selector-33b0b9Hd.d.mts → device-selector-52RA7Wz0.d.mts} +1 -1
- package/dist/{device-selector-33b0b9Hd.d.ts → device-selector-52RA7Wz0.d.ts} +1 -1
- package/dist/index.d.mts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +22 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -27807,15 +27807,17 @@ function GetAllAssistant(connectionConfig, page, pageSize, criteria, cb, authHea
|
|
|
27807
27807
|
cb
|
|
27808
27808
|
);
|
|
27809
27809
|
}
|
|
27810
|
-
function UpdateAssistantVersion(connectionConfig,
|
|
27811
|
-
|
|
27812
|
-
|
|
27813
|
-
|
|
27814
|
-
|
|
27815
|
-
|
|
27816
|
-
|
|
27817
|
-
|
|
27818
|
-
|
|
27810
|
+
function UpdateAssistantVersion(connectionConfig, req, authHeader) {
|
|
27811
|
+
return new Promise((resolve, reject) => {
|
|
27812
|
+
connectionConfig.assistantClient.updateAssistantVersion(
|
|
27813
|
+
req,
|
|
27814
|
+
WithAuthContext(connectionConfig.auth || authHeader),
|
|
27815
|
+
(err, response) => {
|
|
27816
|
+
if (err) reject(err);
|
|
27817
|
+
else resolve(response);
|
|
27818
|
+
}
|
|
27819
|
+
);
|
|
27820
|
+
});
|
|
27819
27821
|
}
|
|
27820
27822
|
function GetAllAssistantProvider(connectionConfig, assistantId, page, pageSize, criteria, cb, authHeader) {
|
|
27821
27823
|
const req = new import_assistant_provider_pb.GetAllAssistantProviderRequest();
|
|
@@ -30187,4 +30189,4 @@ export {
|
|
|
30187
30189
|
useSelectInputDeviceAgent,
|
|
30188
30190
|
DeviceSelectorComponent
|
|
30189
30191
|
};
|
|
30190
|
-
//# sourceMappingURL=chunk-
|
|
30192
|
+
//# sourceMappingURL=chunk-QQVXG47Q.mjs.map
|