@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
package/dist/index.mjs
CHANGED
|
@@ -111,7 +111,7 @@ import {
|
|
|
111
111
|
toTextContent,
|
|
112
112
|
useObservableState,
|
|
113
113
|
useSelectInputDeviceAgent
|
|
114
|
-
} from "./chunk-
|
|
114
|
+
} from "./chunk-QQVXG47Q.mjs";
|
|
115
115
|
import {
|
|
116
116
|
MultibandAudioVisualizerComponent
|
|
117
117
|
} from "./chunk-CVATR327.mjs";
|
|
@@ -36873,17 +36873,17 @@ function GetEndpointLog(config, endpointId, logId, cb, authHeader) {
|
|
|
36873
36873
|
var import_vault_api_pb = __toESM(require_vault_api_pb());
|
|
36874
36874
|
var import_common_pb7 = __toESM(require_common_pb());
|
|
36875
36875
|
import { Struct } from "google-protobuf/google/protobuf/struct_pb";
|
|
36876
|
-
function CreateProviderKey(connectionConfig,
|
|
36877
|
-
|
|
36878
|
-
|
|
36879
|
-
|
|
36880
|
-
|
|
36881
|
-
|
|
36882
|
-
|
|
36883
|
-
|
|
36884
|
-
|
|
36885
|
-
|
|
36886
|
-
);
|
|
36876
|
+
function CreateProviderKey(connectionConfig, req, authHeader) {
|
|
36877
|
+
return new Promise((resolve, reject) => {
|
|
36878
|
+
connectionConfig.vaultClient.createProviderCredential(
|
|
36879
|
+
req,
|
|
36880
|
+
WithAuthContext(connectionConfig.auth || authHeader),
|
|
36881
|
+
(err, response) => {
|
|
36882
|
+
if (err) reject(err);
|
|
36883
|
+
else resolve(response);
|
|
36884
|
+
}
|
|
36885
|
+
);
|
|
36886
|
+
});
|
|
36887
36887
|
}
|
|
36888
36888
|
function DeleteProviderKey(connectionConfig, providerKeyId, cb, authHeader) {
|
|
36889
36889
|
const requestObject = new import_vault_api_pb.DeleteCredentialRequest();
|