From 397dd9e55b457c853c97cef42321d63161cd3657 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 24 Jul 2024 07:41:32 +0000 Subject: [PATCH 1/4] Version Packages --- .changeset/early-islands-appear.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/early-islands-appear.md diff --git a/.changeset/early-islands-appear.md b/.changeset/early-islands-appear.md deleted file mode 100644 index 99ead1e..0000000 --- a/.changeset/early-islands-appear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nodb-js-sdk": patch ---- - -Update readme diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ea659..756bd0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # nodb-js +## 0.1.1 + +### Patch Changes + +- 39888a9: Update readme + ## 0.1.0 ### Minor Changes diff --git a/package.json b/package.json index 00f5f2e..f516295 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodb-js-sdk", - "version": "0.1.0", + "version": "0.1.1", "changeset": "changeset", "description": "Nodb API", "homepage": "https://github.com/nearup-io/nodb-js", From 8e95086aeddc8118d21e6c8a1dcbf63d9f6d3c47 Mon Sep 17 00:00:00 2001 From: Marko Jakic Date: Tue, 30 Jul 2024 13:51:16 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b893ea0..e67bf87 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ For testing we have a .env.test file where the only env variable that is specifi NODB_BASE_URL= ``` -## Api Reference +## API Reference The `Nodb` class provides methods for interacting with a NoDB (NoSQL Database) backend via HTTP and WebSocket connections. It extends the `NodbWebSocket` class to support WebSocket functionality. ### Constructor From 38b711dedd71d7adbaa161cb1659f0def165517a Mon Sep 17 00:00:00 2001 From: tot-kristian <97225590+tot-kristian@users.noreply.github.com> Date: Tue, 30 Jul 2024 13:53:16 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e67bf87..97a7493 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ One application can contain multiple environments, and each environment can cont To create your first application with an environment: ```typescript -const application = await nodb.createAppWithEnvironmentAndGetTokens({ +const application = await nodb.createApplication({ appName: "your-application-name", environmentName: "your-environment-name", }); From 5f9c0b79bdbfdd7edae31a33ff9f4c807e9be698 Mon Sep 17 00:00:00 2001 From: tot-kristian <97225590+tot-kristian@users.noreply.github.com> Date: Tue, 30 Jul 2024 14:12:23 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 97a7493..5559c7f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ If you're using import you should add "type": "module" to package.json. You need to create an instance of Nodb now: ```typescript const nodb = new Nodb({ - baseUrl: "localhost:3000", + baseUrl: "http://localhost:3000", }); ``` ## Key Concepts