Compare commits

..

2 Commits

Author SHA1 Message Date
99bfc485cf 1.0.6 2018-11-03 16:22:32 +01:00
a55311c0fd fix(structure): format 2018-11-03 16:22:32 +01:00
6 changed files with 10 additions and 14 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/logdna",
"version": "1.0.5",
"version": "1.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/logdna",
"version": "1.0.5",
"version": "1.0.6",
"private": false,
"description": "anunoffical package for the logdna api",
"main": "dist/index.js",

View File

@ -29,6 +29,6 @@ tap.test('should create a standard log message', async () => {
tap.test('should send the message', async () => {
await testLogDnaAccount.sendLogDnaMessage(testLogMessage);
})
});
tap.start();

View File

@ -60,7 +60,7 @@ export class LogdnaMessage {
* create lgdna messages from smartlog package
* @param smartlogPackageArg
*/
static fromSmartLogPackage (smartlogPackageArg: ILogPackage): LogdnaMessage {
static fromSmartLogPackage(smartlogPackageArg: ILogPackage): LogdnaMessage {
return new LogdnaMessage({
line: smartlogPackageArg.message,
meta: smartlogPackageArg.logContext,
@ -77,7 +77,7 @@ export class LogdnaMessage {
ip: '0.0.0.0',
mac: 'aa:aa:aa:aa:aa:aa'
});
};
}
/**
* the options of this log message
@ -85,5 +85,5 @@ export class LogdnaMessage {
public options: ILogdnaMessageContructorOptions;
constructor(optionsArg: ILogdnaMessageContructorOptions) {
this.options = optionsArg;
};
}
}

View File

@ -2,8 +2,4 @@ import * as smartrequest from '@pushrocks/smartrequest';
import * as smartstring from '@pushrocks/smartstring';
import * as smartlogInterfaces from '@pushrocks/smartlog-interfaces';
export {
smartrequest,
smartstring,
smartlogInterfaces
};
export { smartrequest, smartstring, smartlogInterfaces };