@onyx.dev/onyx-database 2.1.0 → 2.1.1

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/index.cjs CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  // package.json
4
4
  var name = "@onyx.dev/onyx-database";
5
- var version = "2.1.0";
5
+ var version = "2.1.1";
6
6
 
7
7
  // src/config/defaults.ts
8
8
  var DEFAULT_BASE_URL = "https://api.onyx.dev";
@@ -228,7 +228,6 @@ async function resolveConfig(input) {
228
228
  const maxRetries = retryConfig.maxRetries ?? 3;
229
229
  const retryInitialDelayMs = retryConfig.initialDelayMs ?? 300;
230
230
  const missing = [];
231
- if (!databaseId) missing.push("databaseId");
232
231
  if (!apiKey) missing.push("apiKey");
233
232
  if (!apiSecret) missing.push("apiSecret");
234
233
  if (missing.length) {