@fonoster/voice 0.7.31 → 0.7.32

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.
@@ -82,6 +82,12 @@ class VoiceServer {
82
82
  const healthImpl = new grpc_health_check_1.HealthImplementation(common_1.statusMap);
83
83
  const credentials = yield (0, common_1.getServerCredentials)({});
84
84
  let server;
85
+ // Fixme: The identity verification is currently broken due to a dependency
86
+ // on @prisma/identity-client. For instance, running the VoiceServer in a container
87
+ // requires extra setup, including generating the identity-client.
88
+ //
89
+ // We will need to decouple the createAuthInterceptor and getPublicKeyClient from
90
+ // the identity-client to make this work.
85
91
  if (this.config.skipIdentity) {
86
92
  server = new grpc.Server();
87
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/voice",
3
- "version": "0.7.31",
3
+ "version": "0.7.32",
4
4
  "description": "Voice Server for Fonoster",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
@@ -21,9 +21,9 @@
21
21
  "fonoster": "./dist/index.js"
22
22
  },
23
23
  "dependencies": {
24
- "@fonoster/common": "^0.7.31",
25
- "@fonoster/identity": "^0.7.31",
26
- "@fonoster/logger": "^0.7.31",
24
+ "@fonoster/common": "^0.7.32",
25
+ "@fonoster/identity": "^0.7.32",
26
+ "@fonoster/logger": "^0.7.32",
27
27
  "@grpc/grpc-js": "~1.10.6",
28
28
  "deepmerge": "^4.3.1",
29
29
  "grpc-health-check": "^2.0.2",
@@ -44,5 +44,5 @@
44
44
  "bugs": {
45
45
  "url": "https://github.com/fonoster/fonoster/issues"
46
46
  },
47
- "gitHead": "e8d347b1e7c7e22219a8cee4018ccedb0f41d8fe"
47
+ "gitHead": "96c1aa03e97f05179d83c3bbdda4cc2dde61a367"
48
48
  }