@fonos/common
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -1,3 +0,4 @@ | ||
import FonosService from "./fonos_service"; | ||
import { ServiceOptions } from "./types"; | ||
import APIClient from "./api_client"; | ||
import WebAPIClient from "./web_client"; | ||
import { ClientOptions, WebClientOptions } from "./types"; | ||
import { getClientCredentials, getServerCredentials } from "./trust_util"; | ||
@@ -7,2 +8,2 @@ import runServices from "./service_runner"; | ||
import { SpeechProvider, SpeechTracker, SpeechResult, StreamSpeechResult } from "./speech/types"; | ||
export { FonosService, ServiceOptions, Plugin, SpeechTracker, SpeechResult, SpeechProvider, StreamSpeechResult, getClientCredentials, getServerCredentials, runServices }; | ||
export { APIClient, WebAPIClient, WebClientOptions, ClientOptions, Plugin, SpeechTracker, SpeechResult, SpeechProvider, StreamSpeechResult, getClientCredentials, getServerCredentials, runServices }; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.runServices = exports.getServerCredentials = exports.getClientCredentials = exports.Plugin = exports.FonosService = void 0; | ||
exports.runServices = exports.getServerCredentials = exports.getClientCredentials = exports.Plugin = exports.WebAPIClient = exports.APIClient = void 0; | ||
/* | ||
@@ -26,4 +26,6 @@ * Copyright (C) 2021 by Fonoster Inc (https://fonoster.com) | ||
*/ | ||
const fonos_service_1 = __importDefault(require("./fonos_service")); | ||
exports.FonosService = fonos_service_1.default; | ||
const api_client_1 = __importDefault(require("./api_client")); | ||
exports.APIClient = api_client_1.default; | ||
const web_client_1 = __importDefault(require("./web_client")); | ||
exports.WebAPIClient = web_client_1.default; | ||
const trust_util_1 = require("./trust_util"); | ||
@@ -30,0 +32,0 @@ Object.defineProperty(exports, "getClientCredentials", { enumerable: true, get: function () { return trust_util_1.getClientCredentials; } }); |
@@ -1,2 +0,2 @@ | ||
export interface ServiceOptions { | ||
export interface ClientOptions { | ||
endpoint?: string; | ||
@@ -7,1 +7,7 @@ bucket?: string; | ||
} | ||
export interface WebClientOptions { | ||
endpoint?: string; | ||
bucket?: string; | ||
accessKeyId: string; | ||
accessKeySecret: string; | ||
} |
{ | ||
"name": "@fonos/common", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "Common artifacts", | ||
@@ -32,4 +32,4 @@ "author": "Pedro Sanders <psanders@fonoster.com>", | ||
"dependencies": { | ||
"@fonos/certs": "^0.2.6", | ||
"@fonos/logger": "^0.2.6", | ||
"@fonos/certs": "^0.2.7", | ||
"@fonos/logger": "^0.2.7", | ||
"@grpc/grpc-js": "^1.3.6", | ||
@@ -40,3 +40,3 @@ "@speedymonster/grpc-interceptors": "^0.2.5", | ||
}, | ||
"gitHead": "a3c183d6bcd46d867631ee077a88b0125a6c0fbd" | ||
"gitHead": "10535b04e92c141d9547fa95e6e76e7773fd599e" | ||
} |
24026
22
552
Updated@fonos/certs@^0.2.7
Updated@fonos/logger@^0.2.7