@ray-js/lock-sdk 1.1.1-beta.13 → 1.1.1-beta.14
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/lib/temporary.js +1 -5
- package/package.json +1 -1
package/lib/temporary.js
CHANGED
|
@@ -241,11 +241,7 @@ export const updateTempCustom = async (params) => {
|
|
|
241
241
|
};
|
|
242
242
|
const getOfflinePassword = async (params) => {
|
|
243
243
|
try {
|
|
244
|
-
|
|
245
|
-
return {
|
|
246
|
-
...res,
|
|
247
|
-
pwd: parseOfflinePassword(res.pwd),
|
|
248
|
-
};
|
|
244
|
+
return await createOfflinePassword(params);
|
|
249
245
|
}
|
|
250
246
|
catch (error) {
|
|
251
247
|
throw handleError(error);
|