pusher-chatkit-server
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "pusher-chatkit-server", | ||
"description": "Pusher ChatKit server library", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"main": "./target/index.js", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -1,4 +0,6 @@ | ||
export {UnsupportedGrantTypeError, InvalidGrantTypeError} from 'pusher-platform-node'; | ||
export {default as default} from './chatkit'; | ||
export {default as ChatKit} from './chatkit'; | ||
export { | ||
UnsupportedGrantTypeError, InvalidGrantTypeError | ||
} from 'pusher-platform-node'; | ||
@@ -8,26 +10,1 @@ export * from './errors'; | ||
export * from './permissions'; | ||
// import { ConsoleLogger, EmptyLogger, Logger } from './logger'; | ||
// import { ResumableSubscription } from './resumable-subscription'; | ||
// import { RetryStrategy, ExponentialBackoffRetryStrategy } from './retry-strategy'; | ||
// import { Subscription } from './subscription'; | ||
// export { | ||
// App, | ||
// BaseClient, | ||
// ResumableSubscription, Subscription, | ||
// RetryStrategy, ExponentialBackoffRetryStrategy, | ||
// Logger, ConsoleLogger, EmptyLogger, | ||
// }; | ||
// export default { | ||
// App, | ||
// BaseClient, | ||
// ResumableSubscription, Subscription, | ||
// ExponentialBackoffRetryStrategy, | ||
// ConsoleLogger, EmptyLogger | ||
// }; |
@@ -0,5 +1,5 @@ | ||
export { default as default } from './chatkit'; | ||
export { UnsupportedGrantTypeError, InvalidGrantTypeError } from 'pusher-platform-node'; | ||
export { default as ChatKit } from './chatkit'; | ||
export * from './errors'; | ||
export * from './constants'; | ||
export * from './permissions'; |
@@ -6,28 +6,10 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var chatkit_1 = require("./chatkit"); | ||
exports.default = chatkit_1.default; | ||
var pusher_platform_node_1 = require("pusher-platform-node"); | ||
exports.UnsupportedGrantTypeError = pusher_platform_node_1.UnsupportedGrantTypeError; | ||
exports.InvalidGrantTypeError = pusher_platform_node_1.InvalidGrantTypeError; | ||
var chatkit_1 = require("./chatkit"); | ||
exports.ChatKit = chatkit_1.default; | ||
__export(require("./errors")); | ||
__export(require("./constants")); | ||
__export(require("./permissions")); | ||
// import { ConsoleLogger, EmptyLogger, Logger } from './logger'; | ||
// import { ResumableSubscription } from './resumable-subscription'; | ||
// import { RetryStrategy, ExponentialBackoffRetryStrategy } from './retry-strategy'; | ||
// import { Subscription } from './subscription'; | ||
// export { | ||
// App, | ||
// BaseClient, | ||
// ResumableSubscription, Subscription, | ||
// RetryStrategy, ExponentialBackoffRetryStrategy, | ||
// Logger, ConsoleLogger, EmptyLogger, | ||
// }; | ||
// export default { | ||
// App, | ||
// BaseClient, | ||
// ResumableSubscription, Subscription, | ||
// ExponentialBackoffRetryStrategy, | ||
// ConsoleLogger, EmptyLogger | ||
// }; | ||
//# sourceMappingURL=index.js.map |
@@ -7,4 +7,4 @@ { | ||
"declaration": true , | ||
"noImplicitAny": true, | ||
"outDir": "target" | ||
"outDir": "target", | ||
"strict": true | ||
}, | ||
@@ -11,0 +11,0 @@ "exclude": [ |
Sorry, the diff of this file is not supported yet
64754
588