@routr/connect 2.0.8-alpha.30 → 2.0.8-alpha.31
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/access.js +1 -1
- package/dist/envs.d.ts +3 -0
- package/dist/envs.js +27 -0
- package/dist/errors.js +1 -1
- package/dist/handlers.js +1 -1
- package/dist/healthcheck.d.ts +1 -0
- package/dist/healthcheck.js +23 -0
- package/dist/router.js +1 -1
- package/dist/runner.js +5 -7
- package/dist/tailor.js +1 -1
- package/dist/tracer.js +1 -1
- package/dist/utils.js +1 -1
- package/package.json +8 -7
package/dist/access.js
CHANGED
@@ -11,7 +11,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
12
|
exports.checkAccessFromPSTN = exports.checkAgentOrPeerAccess = exports.checkAccess = void 0;
|
13
13
|
/*
|
14
|
-
* Copyright (C)
|
14
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
15
15
|
* http://github.com/fonoster
|
16
16
|
*
|
17
17
|
* This file is part of Routr.
|
package/dist/envs.d.ts
ADDED
package/dist/envs.js
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
var _a;
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
+
exports.API_ADDR = exports.LOCATION_ADDR = exports.BIND_ADDR = void 0;
|
5
|
+
/*
|
6
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
7
|
+
* http://github.com/fonoster
|
8
|
+
*
|
9
|
+
* This file is part of Routr.
|
10
|
+
*
|
11
|
+
* Licensed under the MIT License (the "License");
|
12
|
+
* you may not use this file except in compliance with
|
13
|
+
* the License. You may obtain a copy of the License at
|
14
|
+
*
|
15
|
+
* https://opensource.org/licenses/MIT
|
16
|
+
*
|
17
|
+
* Unless required by applicable law or agreed to in writing, software
|
18
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
19
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
20
|
+
* See the License for the specific language governing permissions and
|
21
|
+
* limitations under the License.
|
22
|
+
*/
|
23
|
+
const common_1 = require("@routr/common");
|
24
|
+
common_1.Assertions.assertEnvsAreSet(["LOCATION_ADDR", "API_ADDR"]);
|
25
|
+
exports.BIND_ADDR = (_a = process.env.BIND_ADDR) !== null && _a !== void 0 ? _a : "0.0.0.0:51904";
|
26
|
+
exports.LOCATION_ADDR = process.env.LOCATION_ADDR;
|
27
|
+
exports.API_ADDR = process.env.API_ADDR;
|
package/dist/errors.js
CHANGED
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
26
26
|
exports.UnsuportedRoutingError = exports.ServiceUnavailableError = void 0;
|
27
27
|
/*
|
28
|
-
* Copyright (C)
|
28
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
29
29
|
* http://github.com/fonoster/routr
|
30
30
|
*
|
31
31
|
* This file is part of Routr
|
package/dist/handlers.js
CHANGED
@@ -11,7 +11,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
12
|
exports.handleRequest = exports.handleRegistry = exports.handleRegister = void 0;
|
13
13
|
/*
|
14
|
-
* Copyright (C)
|
14
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
15
15
|
* http://github.com/fonoster/routr
|
16
16
|
*
|
17
17
|
* This file is part of Routr
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
/*
|
4
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
5
|
+
* http://github.com/fonoster
|
6
|
+
*
|
7
|
+
* This file is part of Routr.
|
8
|
+
*
|
9
|
+
* Licensed under the MIT License (the "License");
|
10
|
+
* you may not use this file except in compliance with
|
11
|
+
* the License. You may obtain a copy of the License at
|
12
|
+
*
|
13
|
+
* https://opensource.org/licenses/MIT
|
14
|
+
*
|
15
|
+
* Unless required by applicable law or agreed to in writing, software
|
16
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
17
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18
|
+
* See the License for the specific language governing permissions and
|
19
|
+
* limitations under the License.
|
20
|
+
*/
|
21
|
+
const common_1 = require("@routr/common");
|
22
|
+
const envs_1 = require("./envs");
|
23
|
+
common_1.HealthCheck.check(envs_1.BIND_ADDR);
|
package/dist/router.js
CHANGED
@@ -11,7 +11,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
12
|
exports.router = void 0;
|
13
13
|
/*
|
14
|
-
* Copyright (C)
|
14
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
15
15
|
* http://github.com/fonoster/routr
|
16
16
|
*
|
17
17
|
* This file is part of Routr
|
package/dist/runner.js
CHANGED
@@ -3,10 +3,9 @@
|
|
3
3
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
5
5
|
};
|
6
|
-
var _a;
|
7
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
8
7
|
/*
|
9
|
-
* Copyright (C)
|
8
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
10
9
|
* http://github.com/fonoster/routr
|
11
10
|
*
|
12
11
|
* This file is part of Routr
|
@@ -26,10 +25,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
25
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
27
26
|
require("./tracer").init("dispatcher");
|
28
27
|
const service_1 = __importDefault(require("./service"));
|
29
|
-
const
|
30
|
-
common_1.Assertions.assertEnvsAreSet(["LOCATION_ADDR", "API_ADDR"]);
|
28
|
+
const envs_1 = require("./envs");
|
31
29
|
(0, service_1.default)({
|
32
|
-
bindAddr:
|
33
|
-
locationAddr:
|
34
|
-
apiAddr:
|
30
|
+
bindAddr: envs_1.BIND_ADDR,
|
31
|
+
locationAddr: envs_1.LOCATION_ADDR,
|
32
|
+
apiAddr: envs_1.API_ADDR
|
35
33
|
});
|
package/dist/tailor.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.tailor = void 0;
|
4
4
|
/*
|
5
|
-
* Copyright (C)
|
5
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
6
6
|
* http://github.com/fonoster/routr
|
7
7
|
*
|
8
8
|
* This file is part of Routr
|
package/dist/tracer.js
CHANGED
@@ -5,7 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.init = void 0;
|
7
7
|
/*
|
8
|
-
* Copyright (C)
|
8
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
9
9
|
* http://github.com/fonoster/routr
|
10
10
|
*
|
11
11
|
* This file is part of Routr
|
package/dist/utils.js
CHANGED
@@ -11,7 +11,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
12
12
|
exports.getSIPURI = exports.getTrunkURI = exports.createTrunkAuthentication = exports.createRemotePartyId = exports.createPAssertedIdentity = exports.getRoutingDirection = exports.findResource = exports.findNumberByTelUrl = exports.findDomain = exports.isKind = void 0;
|
13
13
|
/*
|
14
|
-
* Copyright (C)
|
14
|
+
* Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
|
15
15
|
* http://github.com/fonoster/routr
|
16
16
|
*
|
17
17
|
* This file is part of Routr
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@routr/connect",
|
3
|
-
"version": "2.0.8-alpha.
|
3
|
+
"version": "2.0.8-alpha.31",
|
4
4
|
"description": "Default processor",
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
6
6
|
"homepage": "https://github.com/fonoster/routr#readme",
|
@@ -16,10 +16,11 @@
|
|
16
16
|
"build": "tsc -b tsconfig.json"
|
17
17
|
},
|
18
18
|
"bin": {
|
19
|
-
"run_connect": "dist/runner.js"
|
19
|
+
"run_connect": "dist/runner.js",
|
20
|
+
"healthcheck_connect": "dist/healthcheck.js"
|
20
21
|
},
|
21
22
|
"dependencies": {
|
22
|
-
"@fonoster/logger": "0.3.
|
23
|
+
"@fonoster/logger": "0.3.20",
|
23
24
|
"@opentelemetry/api": "^1.0.4",
|
24
25
|
"@opentelemetry/exporter-jaeger": "^1.0.4",
|
25
26
|
"@opentelemetry/instrumentation": "^0.27.0",
|
@@ -28,9 +29,9 @@
|
|
28
29
|
"@opentelemetry/sdk-trace-base": "^1.0.4",
|
29
30
|
"@opentelemetry/sdk-trace-node": "^1.0.4",
|
30
31
|
"@opentelemetry/semantic-conventions": "^1.0.4",
|
31
|
-
"@routr/common": "^2.0.8-alpha.
|
32
|
-
"@routr/location": "^2.0.8-alpha.
|
33
|
-
"@routr/processor": "^2.0.8-alpha.
|
32
|
+
"@routr/common": "^2.0.8-alpha.31",
|
33
|
+
"@routr/location": "^2.0.8-alpha.31",
|
34
|
+
"@routr/processor": "^2.0.8-alpha.31"
|
34
35
|
},
|
35
36
|
"files": [
|
36
37
|
"dist"
|
@@ -45,5 +46,5 @@
|
|
45
46
|
"bugs": {
|
46
47
|
"url": "https://github.com/fonoster/routr/issues"
|
47
48
|
},
|
48
|
-
"gitHead": "
|
49
|
+
"gitHead": "6bca271d5a0b7163353a16af6b5195d264b3530f"
|
49
50
|
}
|