wa-chat-server
Version:
Watson Assistant powered chat server
24 lines (23 loc) • 812 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WAChatServerConfigMock = void 0;
class WAChatServerConfigMock {
constructor() {
this.assistant_url = 'http://assistant.dummy.url';
this.assistant_workspace_id = null;
this.assistant_username = null;
this.assistant_password = 'SECRET';
this.assistant_apikey = null;
this.jwt_secret = 'SECRET';
this.allow_origin = null;
this.port = null;
this.VCAP_APP_PORT = null;
this.JSON_SCHEMA_DIR = '';
this.private_key = null;
this.client_email = null;
this.client_url_id = null;
this.routing_enabled = true;
this.client_data_max_size_in_bytes = 0;
}
}
exports.WAChatServerConfigMock = WAChatServerConfigMock;