@fonoster/common 0.12.2 → 0.12.13
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/constants.d.ts +2 -0
- package/dist/constants.js +3 -1
- package/package.json +3 -3
package/dist/constants.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ import { ServingStatus } from "grpc-health-check";
|
|
|
20
20
|
export declare const GRPC_NOT_SERVING_STATUS: ServingStatus;
|
|
21
21
|
export declare const GRPC_SERVING_STATUS: ServingStatus;
|
|
22
22
|
export declare const STASIS_APP_NAME = "mediacontroller";
|
|
23
|
+
export declare const CALL_CONTEXT = "local-ctx-common";
|
|
24
|
+
export declare const CALL_EXTENSION = "start";
|
|
23
25
|
export declare const CALL_DETAIL_RECORD_MEASUREMENT = "cdr";
|
|
24
26
|
export declare const INFLUXDB_CALLS_BUCKET = "calls";
|
|
25
27
|
export declare const APP_REF_HEADER = "x-app-ref";
|
package/dist/constants.js
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WELCOME_DEMO_SPECIAL_LOCAL_ADDRESS = exports.AUTOPILOT_INTERNAL_ADDRESS = exports.AUTOPILOT_SPECIAL_LOCAL_ADDRESS = exports.ROUTR_DEFAULT_PEER_AOR = exports.APP_REF_HEADER = exports.INFLUXDB_CALLS_BUCKET = exports.CALL_DETAIL_RECORD_MEASUREMENT = exports.STASIS_APP_NAME = exports.GRPC_SERVING_STATUS = exports.GRPC_NOT_SERVING_STATUS = void 0;
|
|
3
|
+
exports.WELCOME_DEMO_SPECIAL_LOCAL_ADDRESS = exports.AUTOPILOT_INTERNAL_ADDRESS = exports.AUTOPILOT_SPECIAL_LOCAL_ADDRESS = exports.ROUTR_DEFAULT_PEER_AOR = exports.APP_REF_HEADER = exports.INFLUXDB_CALLS_BUCKET = exports.CALL_DETAIL_RECORD_MEASUREMENT = exports.CALL_EXTENSION = exports.CALL_CONTEXT = exports.STASIS_APP_NAME = exports.GRPC_SERVING_STATUS = exports.GRPC_NOT_SERVING_STATUS = void 0;
|
|
4
4
|
exports.GRPC_NOT_SERVING_STATUS = "NOT_SERVING";
|
|
5
5
|
exports.GRPC_SERVING_STATUS = "SERVING";
|
|
6
6
|
exports.STASIS_APP_NAME = "mediacontroller";
|
|
7
|
+
exports.CALL_CONTEXT = "local-ctx-common";
|
|
8
|
+
exports.CALL_EXTENSION = "start";
|
|
7
9
|
exports.CALL_DETAIL_RECORD_MEASUREMENT = "cdr";
|
|
8
10
|
exports.INFLUXDB_CALLS_BUCKET = "calls";
|
|
9
11
|
exports.APP_REF_HEADER = "x-app-ref";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/common",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.13",
|
|
4
4
|
"description": "Common library for Fonoster projects",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"clean": "rimraf ./dist node_modules tsconfig.tsbuildinfo"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@fonoster/logger": "^0.12.
|
|
21
|
+
"@fonoster/logger": "^0.12.6",
|
|
22
22
|
"@grpc/grpc-js": "~1.10.6",
|
|
23
23
|
"@grpc/proto-loader": "^0.7.12",
|
|
24
24
|
"@influxdata/influxdb-client": "^1.35.0",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/nodemailer": "^6.4.14"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "466e251638ed72c6fc4f7304532b3fc6025aa25c"
|
|
53
53
|
}
|