@jsondb-cloud/client 1.0.16 → 1.0.17

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.js CHANGED
@@ -279,7 +279,7 @@ var Collection = class {
279
279
  this.name = name;
280
280
  this.config = {
281
281
  apiKey: config.apiKey,
282
- project: config.project || "default",
282
+ project: config.project || "v1",
283
283
  baseUrl: (config.baseUrl || "https://api.jsondb.cloud").replace(/\/$/, ""),
284
284
  timeout: config.timeout || 3e4,
285
285
  retry: {
package/dist/index.mjs CHANGED
@@ -240,7 +240,7 @@ var Collection = class {
240
240
  this.name = name;
241
241
  this.config = {
242
242
  apiKey: config.apiKey,
243
- project: config.project || "default",
243
+ project: config.project || "v1",
244
244
  baseUrl: (config.baseUrl || "https://api.jsondb.cloud").replace(/\/$/, ""),
245
245
  timeout: config.timeout || 3e4,
246
246
  retry: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsondb-cloud/client",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Official JavaScript/TypeScript SDK for jsondb.cloud",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.cjs",