npgsqlrest 2.27.0 → 2.33.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/postinstall.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npgsqlrest",
3
- "version": "2.27.0",
3
+ "version": "2.33.0",
4
4
  "description": "Automatic REST API for PostgreSQL Databases Client Build",
5
5
  "scripts": {
6
6
  "postinstall": "node postinstall.js",
package/postinstall.js CHANGED
@@ -6,7 +6,7 @@ const os = require("os");
6
6
  const https = require("https");
7
7
 
8
8
  const downloadDir = "../.bin/";
9
- const downloadFrom = "https://github.com/NpgsqlRest/NpgsqlRest/releases/download/v2.32.0-client-v2.27.0/";
9
+ const downloadFrom = "https://github.com/NpgsqlRest/NpgsqlRest/releases/download/2.33.0/";
10
10
 
11
11
  function download(url, to, done) {
12
12
  https.get(url, (response) => {