@fonoster/apiserver 0.18.3 → 0.19.1

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.
@@ -1,20 +1,2 @@
1
- /**
2
- * Copyright (C) 2025 by Fonoster Inc (https://fonoster.com)
3
- * http://github.com/fonoster/fonoster
4
- *
5
- * This file is part of Fonoster
6
- *
7
- * Licensed under the MIT License (the "License");
8
- * you may not use this file except in compliance with
9
- * the License. You may obtain a copy of the License at
10
- *
11
- * https://opensource.org/licenses/MIT
12
- *
13
- * Unless required by applicable law or agreed to in writing, software
14
- * distributed under the License is distributed on an "AS IS" BASIS,
15
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
- * See the License for the specific language governing permissions and
17
- * limitations under the License.
18
- */
19
1
  declare const allowList: string[];
20
2
  export { allowList };
@@ -19,20 +19,12 @@ exports.allowList = void 0;
19
19
  * See the License for the specific language governing permissions and
20
20
  * limitations under the License.
21
21
  */
22
+ const identity_1 = require("@fonoster/identity");
23
+ // The Identity public methods come from a single source in @fonoster/identity
24
+ // (shared with the standalone Identity service); the apiserver adds its own
25
+ // non-identity public methods.
22
26
  const allowList = [
23
- "/grpc.health.v1.Health/Check",
24
- "/fonoster.identity.v1beta2.Identity/CreateUser",
25
- "/fonoster.identity.v1beta2.Identity/CreateUserWithOauth2Code",
26
- "/fonoster.identity.v1beta2.Identity/CreateWorkspace",
27
- "/fonoster.identity.v1beta2.Identity/ExchangeApiKey",
28
- "/fonoster.identity.v1beta2.Identity/ExchangeCredentials",
29
- "/fonoster.identity.v1beta2.Identity/ExchangeOauth2Code",
30
- "/fonoster.identity.v1beta2.Identity/ExchangeRefreshToken",
31
- "/fonoster.identity.v1beta2.Identity/SendVerificationCode",
32
- "/fonoster.identity.v1beta2.Identity/VerifyCode",
33
- "/fonoster.identity.v1beta2.Identity/GetPublicKey",
34
- "/fonoster.identity.v1beta2.Identity/SendResetPasswordCode",
35
- "/fonoster.identity.v1beta2.Identity/ResetPassword",
27
+ ...identity_1.identityAllowList,
36
28
  "/fonoster.voice.v1beta2.Voice/CreateSession"
37
29
  ];
38
30
  exports.allowList = allowList;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/apiserver",
3
- "version": "0.18.3",
3
+ "version": "0.19.1",
4
4
  "description": "APIServer for Fonoster",
5
5
  "author": "Pedro Sanders <psanders@fonoster.com>",
6
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
@@ -22,14 +22,14 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@deepgram/sdk": "^3.5.1",
25
- "@fonoster/authz": "^0.18.2",
26
- "@fonoster/autopilot": "^0.18.2",
27
- "@fonoster/common": "^0.18.2",
28
- "@fonoster/identity": "^0.18.2",
29
- "@fonoster/logger": "^0.18.2",
30
- "@fonoster/sipnet": "^0.18.2",
31
- "@fonoster/streams": "^0.18.2",
32
- "@fonoster/types": "^0.18.2",
25
+ "@fonoster/authz": "^0.19.1",
26
+ "@fonoster/autopilot": "^0.19.1",
27
+ "@fonoster/common": "^0.19.1",
28
+ "@fonoster/identity": "^0.19.1",
29
+ "@fonoster/logger": "^0.19.1",
30
+ "@fonoster/sipnet": "^0.19.1",
31
+ "@fonoster/streams": "^0.19.1",
32
+ "@fonoster/types": "^0.19.1",
33
33
  "@google-cloud/speech": "^6.6.0",
34
34
  "@google-cloud/text-to-speech": "^5.3.0",
35
35
  "@grpc/grpc-js": "~1.10.11",
@@ -76,5 +76,5 @@
76
76
  "@types/uuid": "^10.0.0",
77
77
  "@types/validator": "^13.15.10"
78
78
  },
79
- "gitHead": "9571a813de9693e010f23f28c2b4e0eb0d89f156"
79
+ "gitHead": "4c28def9ff1aebbbaf2e23a8944cf3cf49c4da1e"
80
80
  }