@fonoster/common 0.5.5 → 0.6.1-alpha.0

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.
Files changed (102) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +3 -0
  3. package/dist/GrpcError.d.ts +5 -0
  4. package/dist/{speech/plugin.js → GrpcError.js} +8 -12
  5. package/dist/constants.d.ts +4 -0
  6. package/dist/constants.js +6 -0
  7. package/dist/errors/PrismaErrorEnum.d.ts +6 -0
  8. package/dist/{envs.js → errors/PrismaErrorEnum.js} +8 -6
  9. package/dist/errors/handleError.d.ts +6 -0
  10. package/dist/errors/handleError.js +86 -0
  11. package/dist/errors/handleZodError.d.ts +4 -0
  12. package/dist/errors/handleZodError.js +41 -0
  13. package/dist/errors/index.d.ts +4 -0
  14. package/dist/errors/index.js +38 -0
  15. package/dist/errors/types.d.ts +5 -0
  16. package/dist/grpcStatusMap.d.ts +4 -0
  17. package/dist/grpcStatusMap.js +27 -0
  18. package/dist/index.d.ts +10 -8
  19. package/dist/index.js +41 -14
  20. package/dist/notifications/compileTemplate.d.ts +6 -0
  21. package/dist/{env_is_set.js → notifications/compileTemplate.js} +12 -14
  22. package/dist/notifications/createEmailSender.d.ts +17 -0
  23. package/dist/notifications/createEmailSender.js +55 -0
  24. package/dist/notifications/index.d.ts +2 -0
  25. package/dist/notifications/index.js +36 -0
  26. package/dist/protos/acls.proto +119 -0
  27. package/dist/protos/agents.proto +155 -0
  28. package/dist/protos/applications.proto +154 -0
  29. package/dist/protos/calls.proto +164 -0
  30. package/dist/protos/credentials.proto +119 -0
  31. package/dist/protos/domains.proto +127 -0
  32. package/dist/protos/identity.proto +286 -0
  33. package/dist/protos/numbers.proto +152 -0
  34. package/dist/protos/secrets.proto +113 -0
  35. package/dist/protos/trunks.proto +164 -0
  36. package/dist/protos/voice.proto +421 -0
  37. package/dist/tts/AzureVoices.d.ts +523 -0
  38. package/dist/tts/AzureVoices.js +3622 -0
  39. package/dist/tts/GoogleVoices.d.ts +475 -0
  40. package/dist/tts/GoogleVoices.js +3284 -0
  41. package/dist/tts/index.d.ts +3 -0
  42. package/dist/tts/index.js +37 -0
  43. package/dist/tts/types.d.ts +164 -0
  44. package/dist/tts/types.js +186 -0
  45. package/dist/types/applications.d.ts +57 -0
  46. package/dist/types/applications.js +7 -0
  47. package/dist/types/index.d.ts +1 -0
  48. package/dist/types/index.js +35 -0
  49. package/dist/types.d.ts +8 -6
  50. package/dist/utils/assertEnvsAreSet.d.ts +7 -0
  51. package/dist/utils/assertEnvsAreSet.js +37 -0
  52. package/dist/utils/assertFileExists.d.ts +5 -0
  53. package/dist/utils/assertFileExists.js +38 -0
  54. package/dist/utils/createInterceptingCall.d.ts +7 -0
  55. package/dist/utils/createInterceptingCall.js +9 -0
  56. package/dist/utils/createService.d.ts +9 -0
  57. package/dist/{service_runner.js → utils/createService.js} +15 -40
  58. package/dist/utils/datesMapper.d.ts +9 -0
  59. package/dist/utils/datesMapper.js +8 -0
  60. package/dist/utils/getServerCredentials.d.ts +10 -0
  61. package/dist/{trust_util.js → utils/getServerCredentials.js} +33 -37
  62. package/dist/utils/index.d.ts +8 -0
  63. package/dist/utils/index.js +42 -0
  64. package/dist/utils/toCamelCase.d.ts +2 -0
  65. package/dist/utils/toCamelCase.js +27 -0
  66. package/dist/utils/toPascalCase.d.ts +2 -0
  67. package/dist/utils/toPascalCase.js +29 -0
  68. package/dist/voice/Dial.d.ts +23 -0
  69. package/dist/voice/Dial.js +19 -0
  70. package/dist/voice/Gather.d.ts +18 -0
  71. package/dist/voice/Gather.js +9 -0
  72. package/dist/voice/Mute.d.ts +13 -0
  73. package/dist/voice/Mute.js +9 -0
  74. package/dist/voice/Play.d.ts +12 -0
  75. package/dist/voice/Play.js +2 -0
  76. package/dist/voice/PlayDtmf.d.ts +5 -0
  77. package/dist/voice/PlayDtmf.js +2 -0
  78. package/dist/voice/PlaybackControl.d.ts +13 -0
  79. package/dist/voice/PlaybackControl.js +11 -0
  80. package/dist/voice/Record.d.ts +18 -0
  81. package/dist/voice/Record.js +7 -0
  82. package/dist/voice/Say.d.ts +15 -0
  83. package/dist/voice/Say.js +2 -0
  84. package/dist/voice/Stream.d.ts +41 -0
  85. package/dist/voice/Stream.js +39 -0
  86. package/dist/voice/Verb.d.ts +9 -0
  87. package/dist/{healthcheck.js → voice/Verb.js} +2 -5
  88. package/dist/voice/index.d.ts +11 -0
  89. package/dist/voice/index.js +45 -0
  90. package/dist/voice/voice.d.ts +101 -0
  91. package/dist/voice/voice.js +44 -0
  92. package/package.json +29 -25
  93. package/dist/api_client.d.ts +0 -27
  94. package/dist/api_client.js +0 -110
  95. package/dist/env_is_set.d.ts +0 -1
  96. package/dist/envs.d.ts +0 -4
  97. package/dist/healthcheck.d.ts +0 -2
  98. package/dist/service_runner.d.ts +0 -13
  99. package/dist/speech/plugin.d.ts +0 -6
  100. package/dist/speech/types.d.ts +0 -17
  101. package/dist/trust_util.d.ts +0 -4
  102. /package/dist/{speech → errors}/types.js +0 -0
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ /*
18
+ * Copyright (C) 2024 by Fonoster Inc (https://fonoster.com)
19
+ * http://github.com/fonoster/fonoster
20
+ *
21
+ * This file is part of Fonoster
22
+ *
23
+ * Licensed under the MIT License (the "License");
24
+ * you may not use this file except in compliance with
25
+ * the License. You may obtain a copy of the License at
26
+ *
27
+ * https://opensource.org/licenses/MIT
28
+ *
29
+ * Unless required by applicable law or agreed to in writing, software
30
+ * distributed under the License is distributed on an "AS IS" BASIS,
31
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32
+ * See the License for the specific language governing permissions and
33
+ * limitations under the License.
34
+ */
35
+ __exportStar(require("./voice"), exports);
36
+ __exportStar(require("./Dial"), exports);
37
+ __exportStar(require("./Gather"), exports);
38
+ __exportStar(require("./Verb"), exports);
39
+ __exportStar(require("./Mute"), exports);
40
+ __exportStar(require("./Play"), exports);
41
+ __exportStar(require("./PlaybackControl"), exports);
42
+ __exportStar(require("./PlayDtmf"), exports);
43
+ __exportStar(require("./Record"), exports);
44
+ __exportStar(require("./Say"), exports);
45
+ __exportStar(require("./Stream"), exports);
@@ -0,0 +1,101 @@
1
+ import { DialRequest, DialStatus } from "./Dial";
2
+ import { GatherRequest, GatherResponse } from "./Gather";
3
+ import { MuteRequest } from "./Mute";
4
+ import { PlayRequest, PlayResponse } from "./Play";
5
+ import { PlayDtmfRequest } from "./PlayDtmf";
6
+ import { RecordRequest, RecordResponse } from "./Record";
7
+ import { SayRequest, SayResponse } from "./Say";
8
+ import { StartStreamRequest, StartStreamResponse, StopStreamRequest, StreamPayload } from "./Stream";
9
+ import { VerbRequest, VerbResponse, VoiceRequest } from "./Verb";
10
+ import { GrpcError } from "../GrpcError";
11
+ declare const DATA: "data";
12
+ declare const END: "end";
13
+ declare const ERROR: "error";
14
+ declare enum StreamEvent {
15
+ DATA = "data",
16
+ END = "end",
17
+ ERROR = "error"
18
+ }
19
+ declare enum StreamContent {
20
+ ANSWER_REQUEST = "answerRequest",
21
+ ANSWER_RESPONSE = "answerResponse",
22
+ HANGUP_REQUEST = "hangupRequest",
23
+ HANGUP_RESPONSE = "hangupResponse",
24
+ PLAY_REQUEST = "playRequest",
25
+ PLAY_RESPONSE = "playResponse",
26
+ PLAY_DTMF_REQUEST = "playDtmfRequest",
27
+ PLAY_DTMF_RESPONSE = "playDtmfResponse",
28
+ PLAYBACK_CONTROL_REQUEST = "playbackControlRequest",
29
+ PLAYBACK_CONTROL_RESPONSE = "playbackControlResponse",
30
+ MUTE_REQUEST = "muteRequest",
31
+ MUTE_RESPONSE = "muteResponse",
32
+ UNMUTE_REQUEST = "unmuteRequest",
33
+ UNMUTE_RESPONSE = "unmuteResponse",
34
+ GATHER_REQUEST = "gatherRequest",
35
+ GATHER_RESPONSE = "gatherResponse",
36
+ SAY_REQUEST = "sayRequest",
37
+ SAY_RESPONSE = "sayResponse",
38
+ RECORD_REQUEST = "recordRequest",
39
+ RECORD_RESPONSE = "recordResponse",
40
+ DIAL_REQUEST = "dialRequest",
41
+ DIAL_RESPONSE = "dialResponse",
42
+ START_STREAM_REQUEST = "startStreamRequest",
43
+ START_STREAM_RESPONSE = "startStreamResponse",
44
+ STOP_STREAM_REQUEST = "stopStreamRequest",
45
+ STREAM_PAYLOAD = "streamPayload"
46
+ }
47
+ type VoiceClientConfig = {
48
+ appRef: string;
49
+ accessKeyId: string;
50
+ appEndpoint: string;
51
+ ingressNumber: string;
52
+ callerName: string;
53
+ callerNumber: string;
54
+ sessionRef: string;
55
+ sessionToken: string;
56
+ metadata?: Record<string, string>;
57
+ };
58
+ type VoiceIn = {
59
+ request?: VoiceRequest;
60
+ content?: StreamContent;
61
+ answerResponse?: VerbResponse;
62
+ hangupResponse?: VerbResponse;
63
+ playResponse?: PlayResponse;
64
+ playDtmfResponse?: VerbResponse;
65
+ playbackControlResponse?: VerbResponse;
66
+ muteResponse?: VerbResponse;
67
+ unmuteResponse?: VerbResponse;
68
+ gatherResponse?: GatherResponse;
69
+ sayResponse?: SayResponse;
70
+ recordResponse?: RecordResponse;
71
+ dialResponse?: {
72
+ status: DialStatus;
73
+ };
74
+ startStreamResponse?: StartStreamResponse;
75
+ streamPayload?: StreamPayload;
76
+ };
77
+ type VoiceOut = {
78
+ answerRequest?: VerbRequest;
79
+ hangupRequest?: VerbRequest;
80
+ playRequest?: PlayRequest;
81
+ playDtmfRequest?: PlayDtmfRequest;
82
+ playbackControlRequest?: VerbRequest;
83
+ muteRequest?: MuteRequest;
84
+ unmuteRequest?: MuteRequest;
85
+ gatherRequest?: GatherRequest;
86
+ sayRequest?: SayRequest;
87
+ recordRequest?: RecordRequest;
88
+ dialRequest?: DialRequest;
89
+ startStreamRequest?: StartStreamRequest;
90
+ stopStreamRequest?: StopStreamRequest;
91
+ streamPayload?: StreamPayload;
92
+ };
93
+ type BaseVoiceStream<T, W> = {
94
+ removeListener: (e: StreamEvent, cb: (voice: T) => void) => void;
95
+ on: (e: StreamEvent, cb: (voice: T) => void) => void;
96
+ write: (voice: W) => void;
97
+ end: () => void;
98
+ };
99
+ type VoiceSessionStreamServer = BaseVoiceStream<VoiceIn, VoiceOut>;
100
+ type VoiceSessionStreamClient = BaseVoiceStream<VoiceOut | GrpcError, VoiceIn | GrpcError>;
101
+ export { VoiceClientConfig, VoiceSessionStreamServer, VoiceSessionStreamClient, StreamEvent, StreamContent, VoiceIn, VoiceOut, DATA, END, ERROR };
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ERROR = exports.END = exports.DATA = exports.StreamContent = exports.StreamEvent = void 0;
4
+ const DATA = "data";
5
+ exports.DATA = DATA;
6
+ const END = "end";
7
+ exports.END = END;
8
+ const ERROR = "error";
9
+ exports.ERROR = ERROR;
10
+ var StreamEvent;
11
+ (function (StreamEvent) {
12
+ StreamEvent["DATA"] = "data";
13
+ StreamEvent["END"] = "end";
14
+ StreamEvent["ERROR"] = "error";
15
+ })(StreamEvent || (exports.StreamEvent = StreamEvent = {}));
16
+ var StreamContent;
17
+ (function (StreamContent) {
18
+ StreamContent["ANSWER_REQUEST"] = "answerRequest";
19
+ StreamContent["ANSWER_RESPONSE"] = "answerResponse";
20
+ StreamContent["HANGUP_REQUEST"] = "hangupRequest";
21
+ StreamContent["HANGUP_RESPONSE"] = "hangupResponse";
22
+ StreamContent["PLAY_REQUEST"] = "playRequest";
23
+ StreamContent["PLAY_RESPONSE"] = "playResponse";
24
+ StreamContent["PLAY_DTMF_REQUEST"] = "playDtmfRequest";
25
+ StreamContent["PLAY_DTMF_RESPONSE"] = "playDtmfResponse";
26
+ StreamContent["PLAYBACK_CONTROL_REQUEST"] = "playbackControlRequest";
27
+ StreamContent["PLAYBACK_CONTROL_RESPONSE"] = "playbackControlResponse";
28
+ StreamContent["MUTE_REQUEST"] = "muteRequest";
29
+ StreamContent["MUTE_RESPONSE"] = "muteResponse";
30
+ StreamContent["UNMUTE_REQUEST"] = "unmuteRequest";
31
+ StreamContent["UNMUTE_RESPONSE"] = "unmuteResponse";
32
+ StreamContent["GATHER_REQUEST"] = "gatherRequest";
33
+ StreamContent["GATHER_RESPONSE"] = "gatherResponse";
34
+ StreamContent["SAY_REQUEST"] = "sayRequest";
35
+ StreamContent["SAY_RESPONSE"] = "sayResponse";
36
+ StreamContent["RECORD_REQUEST"] = "recordRequest";
37
+ StreamContent["RECORD_RESPONSE"] = "recordResponse";
38
+ StreamContent["DIAL_REQUEST"] = "dialRequest";
39
+ StreamContent["DIAL_RESPONSE"] = "dialResponse";
40
+ StreamContent["START_STREAM_REQUEST"] = "startStreamRequest";
41
+ StreamContent["START_STREAM_RESPONSE"] = "startStreamResponse";
42
+ StreamContent["STOP_STREAM_REQUEST"] = "stopStreamRequest";
43
+ StreamContent["STREAM_PAYLOAD"] = "streamPayload";
44
+ })(StreamContent || (exports.StreamContent = StreamContent = {}));
package/package.json CHANGED
@@ -1,42 +1,46 @@
1
1
  {
2
2
  "name": "@fonoster/common",
3
- "version": "0.5.5",
4
- "description": "Common artifacts",
3
+ "version": "0.6.1-alpha.0",
4
+ "description": "Common library for Fonoster projects",
5
+ "author": "Pedro Sanders <psanders@fonoster.com>",
5
6
  "homepage": "https://github.com/fonoster/fonoster#readme",
6
- "bugs": {
7
- "url": "https://github.com/fonoster/fonoster/issues"
8
- },
9
- "repository": {
10
- "type": "git",
11
- "url": "git+https://github.com/fonoster/fonoster.git"
12
- },
13
7
  "license": "MIT",
14
- "author": "Pedro Sanders <psanders@fonoster.com>",
15
8
  "main": "dist/index",
16
9
  "types": "dist/index",
17
10
  "directories": {
18
- "test": "test",
19
- "src": "src"
11
+ "src": "src",
12
+ "test": "test"
20
13
  },
21
- "files": [
22
- "dist"
23
- ],
24
14
  "scripts": {
25
15
  "prebuild": "rimraf ./dist tsconfig.tsbuildinfo",
26
- "build": "tsc -b tsconfig.json"
16
+ "build": "tsc -b tsconfig.json",
17
+ "postbuild": "cp -a src/protos dist && node ../../.scripts/copy-hbs.js",
18
+ "clean": "rimraf ./dist node_modules tsconfig.tsbuildinfo"
27
19
  },
28
20
  "dependencies": {
29
- "@fonoster/grpc-health-check": "^3.1.6",
30
- "@fonoster/logger": "^0.5.5",
31
- "@grpc/grpc-js": "~1.8.21",
32
- "@grpc/proto-loader": "^0.7.2",
33
- "atob": "^2.1.2",
34
- "axios": "^1.6.2",
35
- "deepmerge": "^4.2.2",
36
- "grpc-interceptors": "github:fonoster/node-grpc-interceptors"
21
+ "@fonoster/logger": "^0.6.1-alpha.0",
22
+ "@grpc/grpc-js": "^1.10.6",
23
+ "@grpc/proto-loader": "^0.7.12",
24
+ "grpc-health-check": "^2.0.2",
25
+ "handlebars": "^4.7.8",
26
+ "nodemailer": "^6.9.13",
27
+ "zod-validation-error": "^3.3.0"
37
28
  },
29
+ "files": [
30
+ "dist"
31
+ ],
38
32
  "publishConfig": {
39
33
  "access": "public"
40
34
  },
41
- "gitHead": "4a1438d9dedeaf7b2a5b6a50d5e233f994e2b2cf"
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "git+https://github.com/fonoster/fonoster.git"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/fonoster/fonoster/issues"
41
+ },
42
+ "devDependencies": {
43
+ "@types/nodemailer": "^6.4.14"
44
+ },
45
+ "gitHead": "2cdd1508146747550fe048c35d9a010d04f6d3aa"
42
46
  }
@@ -1,27 +0,0 @@
1
- import { ClientOptions } from "./types";
2
- import { Metadata } from "@grpc/grpc-js";
3
- export default class {
4
- options: ClientOptions;
5
- metadata: Metadata;
6
- ServiceClient: any;
7
- service: any;
8
- /**
9
- * Use the Options object to overwrite the service default configuration.
10
- * @typedef {ClientOptions} Options
11
- * @property {string} endpoint - The endpoint URI to send requests to.
12
- * The endpoint should be a string like '{serviceHost}:{servicePort}'.
13
- * @property {string} accessKeyId - your Fonoster access key ID.
14
- * @property {string} accessKeySecret - your Fonoster secret access key.
15
- * @property {string} bucket - The bucket to upload apps and media files.
16
- */
17
- /**
18
- * Constructs a service object.
19
- *
20
- * @param {Options} options - Overwrite for the service's defaults configuration.
21
- */
22
- constructor(ServiceClient: any, options: ClientOptions);
23
- init(): void;
24
- getOptions(): ClientOptions;
25
- getService(): any;
26
- getMeta(): Metadata;
27
- }
@@ -1,110 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- /*
27
- * Copyright (C) 2023 by Fonoster Inc (https://fonoster.com)
28
- * http://github.com/fonoster/fonoster
29
- *
30
- * This file is part of Fonoster
31
- *
32
- * Licensed under the MIT License (the "License");
33
- * you may not use this file except in compliance with
34
- * the License. You may obtain a copy of the License at
35
- *
36
- * https://opensource.org/licenses/MIT
37
- *
38
- * Unless required by applicable law or agreed to in writing, software
39
- * distributed under the License is distributed on an "AS IS" BASIS,
40
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
41
- * See the License for the specific language governing permissions and
42
- * limitations under the License.
43
- */
44
- const fs = __importStar(require("fs"));
45
- const path = __importStar(require("path"));
46
- const trust_util_1 = require("./trust_util");
47
- const grpc_js_1 = require("@grpc/grpc-js");
48
- const envs_1 = require("./envs");
49
- const CONFIG_FILE = path.join(require("os").homedir(), ".fonoster", "config");
50
- const configFileExit = () => fs.existsSync(CONFIG_FILE);
51
- const getConfigFile = () => JSON.parse(fs.readFileSync(CONFIG_FILE).toString());
52
- const defaultOptions = {
53
- endpoint: envs_1.APISERVER_ENDPOINT || "api.fonoster.io",
54
- accessKeyId: envs_1.APISERVER_ACCESS_KEY_ID,
55
- accessKeySecret: envs_1.APISERVER_ACCESS_KEY_SECRET
56
- };
57
- class default_1 {
58
- options;
59
- metadata;
60
- ServiceClient;
61
- service;
62
- /**
63
- * Use the Options object to overwrite the service default configuration.
64
- * @typedef {ClientOptions} Options
65
- * @property {string} endpoint - The endpoint URI to send requests to.
66
- * The endpoint should be a string like '{serviceHost}:{servicePort}'.
67
- * @property {string} accessKeyId - your Fonoster access key ID.
68
- * @property {string} accessKeySecret - your Fonoster secret access key.
69
- * @property {string} bucket - The bucket to upload apps and media files.
70
- */
71
- /**
72
- * Constructs a service object.
73
- *
74
- * @param {Options} options - Overwrite for the service's defaults configuration.
75
- */
76
- constructor(ServiceClient, options) {
77
- this.ServiceClient = ServiceClient;
78
- this.options = options;
79
- }
80
- init() {
81
- try {
82
- if (!this.options && configFileExit()) {
83
- this.options = getConfigFile();
84
- }
85
- }
86
- catch (err) {
87
- throw new Error(`Malformed config file found at: ${CONFIG_FILE}`);
88
- }
89
- if (!this.options) {
90
- this.options = defaultOptions;
91
- }
92
- if (!this.options.accessKeyId || !this.options.accessKeySecret) {
93
- throw new Error("Not valid credentials found");
94
- }
95
- this.metadata = new grpc_js_1.Metadata();
96
- this.metadata.add("access_key_id", this.options.accessKeyId);
97
- this.metadata.add("access_key_secret", this.options.accessKeySecret);
98
- this.service = new this.ServiceClient(this.options.endpoint || defaultOptions.endpoint, (0, trust_util_1.getClientCredentials)());
99
- }
100
- getOptions() {
101
- return this.options;
102
- }
103
- getService() {
104
- return this.service;
105
- }
106
- getMeta() {
107
- return this.metadata;
108
- }
109
- }
110
- exports.default = default_1;
@@ -1 +0,0 @@
1
- export default function assertEnvIsSet(name: string): void;
package/dist/envs.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export declare const APISERVER_ENDPOINT: string;
2
- export declare const APISERVER_ACCESS_KEY_ID: string;
3
- export declare const APISERVER_ACCESS_KEY_SECRET: string;
4
- export declare const GRPC_ALLOW_INSECURE: string;
@@ -1,2 +0,0 @@
1
- declare const _default: () => Promise<void>;
2
- export default _default;
@@ -1,13 +0,0 @@
1
- interface ServiceInf {
2
- name: string;
3
- version: string;
4
- service: any;
5
- server: any;
6
- }
7
- interface Middleware {
8
- name: string;
9
- description?: string;
10
- middlewareObj: any;
11
- }
12
- export default function run(srvInfList: ServiceInf[], middlewareList?: Middleware[]): void;
13
- export {};
@@ -1,6 +0,0 @@
1
- export declare abstract class Plugin {
2
- type: string;
3
- name: string;
4
- constructor(type: string, name: string);
5
- getType(): string;
6
- }
@@ -1,17 +0,0 @@
1
- /// <reference types="node" />
2
- import { Stream } from "stream";
3
- export interface SpeechProvider {
4
- createSpeechTracker(options: unknown): SpeechTracker;
5
- }
6
- export interface SpeechTracker {
7
- transcribe(stream: Stream): Promise<SpeechResult>;
8
- streamTranscribe(stream: Stream): StreamSpeechResult;
9
- }
10
- export interface SpeechResult {
11
- transcript: string;
12
- isFinal: boolean;
13
- }
14
- export interface StreamSpeechResult {
15
- on(events: string, callback: Function): void;
16
- close: Function;
17
- }
@@ -1,4 +0,0 @@
1
- import * as grpc from "@grpc/grpc-js";
2
- declare const getServerCredentials: () => grpc.ServerCredentials;
3
- declare const getClientCredentials: () => grpc.ChannelCredentials;
4
- export { getClientCredentials, getServerCredentials };
File without changes