@hivedev/hivesdk 1.0.41 → 1.0.42

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/hive-client.js CHANGED
@@ -352,4 +352,4 @@ export {
352
352
  getDeviceId,
353
353
  initClient,
354
354
  login
355
- };
355
+ };
package/hive-server.cjs CHANGED
@@ -530,14 +530,14 @@ async function saveConfiguration(configurationObject) {
530
530
  await encryptAndStoreFile(
531
531
  JSON.stringify(configurationObject.firebaseAdminCredentials),
532
532
  import_path4.default.join(getAppDataDirectory(), "firebase_admin_credentials.dat"),
533
- process.env.SERVER_PASSWORD
533
+ process.env.WORD
534
534
  );
535
535
  }
536
536
  if (configurationObject.databaseCredentials) {
537
537
  await encryptAndStoreFile(
538
538
  JSON.stringify(configurationObject.databaseCredentials),
539
539
  import_path4.default.join(getAppDataDirectory(), "database_credentials.dat"),
540
- process.env.SERVER_PASSWORD
540
+ process.env.WORD
541
541
  );
542
542
  }
543
543
  if (configurationObject.permissions) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hivedev/hivesdk",
3
3
  "type": "module",
4
- "version": "1.0.41",
4
+ "version": "1.0.42",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
7
7
  "scripts": {