@routr/pgdata 2.0.8-alpha.42 → 2.0.8-alpha.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@routr/pgdata",
3
- "version": "2.0.8-alpha.42",
3
+ "version": "2.0.8-alpha.43",
4
4
  "description": "Postgres API Server for Routr Connect",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/routr#readme",
@@ -16,8 +16,7 @@
16
16
  "build": "tsc -b tsconfig.json"
17
17
  },
18
18
  "bin": {
19
- "run_pgdata": "dist/runner.js",
20
- "healthcheck_pgdata": "dist/healthcheck.js"
19
+ "run_pgdata": "dist/runner.js"
21
20
  },
22
21
  "dependencies": {
23
22
  "@fonoster/grpc-health-check": "^3.1.2",
@@ -32,8 +31,8 @@
32
31
  "@opentelemetry/sdk-trace-node": "^1.0.4",
33
32
  "@opentelemetry/semantic-conventions": "^1.0.4",
34
33
  "@prisma/client": "^4.8.0",
35
- "@routr/common": "^2.0.8-alpha.42",
36
- "@routr/processor": "^2.0.8-alpha.42",
34
+ "@routr/common": "^2.0.8-alpha.43",
35
+ "@routr/processor": "^2.0.8-alpha.43",
37
36
  "google-protobuf": "^3.9.2",
38
37
  "grpc-interceptors": "github:fonoster/node-grpc-interceptors",
39
38
  "pb-util": "^1.0.3",
@@ -58,5 +57,5 @@
58
57
  "@types/validator": "^13.7.10",
59
58
  "prisma": "^4.8.0"
60
59
  },
61
- "gitHead": "d52dbb834a74e0d0630521d5f9074ca25b0104c0"
60
+ "gitHead": "344a384c57bc0510c0daa65a7bbbd25b03d849b0"
62
61
  }
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- export {};
@@ -1,24 +0,0 @@
1
- #!/usr/bin/env node
2
- "use strict";
3
- Object.defineProperty(exports, "__esModule", { value: true });
4
- /*
5
- * Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
6
- * http://github.com/fonoster
7
- *
8
- * This file is part of Routr.
9
- *
10
- * Licensed under the MIT License (the "License");
11
- * you may not use this file except in compliance with
12
- * the License. You may obtain a copy of the License at
13
- *
14
- * https://opensource.org/licenses/MIT
15
- *
16
- * Unless required by applicable law or agreed to in writing, software
17
- * distributed under the License is distributed on an "AS IS" BASIS,
18
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
- * See the License for the specific language governing permissions and
20
- * limitations under the License.
21
- */
22
- const common_1 = require("@routr/common");
23
- const envs_1 = require("./envs");
24
- common_1.HealthCheck.check(envs_1.BIND_ADDR);