New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@chatally/core

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chatally/core - npm Package Compare versions

Comparing version
0.0.10
to
0.0.11
+1
-1
.turbo/turbo-lint.log
> @chatally/core@0.0.10 lint
> @chatally/core@0.0.11 lint
> eslint .
> @chatally/core@0.0.10 test
> @chatally/core@0.0.11 test
> vitest run

@@ -8,30 +8,30 @@

[15:15:12.806] INFO (@chatally/core): Registered middleware 'echo'
[15:15:12.817] INFO (@chatally/core): Registered middleware 'a'
[15:15:12.818] INFO (@chatally/core): Registered middleware 'b'
[15:15:12.818] INFO (@chatally/core): Registered middleware 'c'
[15:15:12.818] INFO (@chatally/core): Registered middleware 'd'
[15:15:12.818] INFO (@chatally/core): Registered middleware 'e'
[15:15:12.820] INFO (@chatally/core): Registered middleware 'echo'
[15:15:12.820] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
[15:29:30.926] INFO (@chatally/core): Registered middleware 'echo'
[15:29:30.931] INFO (@chatally/core): Registered middleware 'a'
[15:29:30.931] INFO (@chatally/core): Registered middleware 'b'
[15:29:30.931] INFO (@chatally/core): Registered middleware 'c'
[15:29:30.931] INFO (@chatally/core): Registered middleware 'd'
[15:29:30.931] INFO (@chatally/core): Registered middleware 'e'
[15:29:30.933] INFO (@chatally/core): Registered middleware 'echo'
[15:29:30.933] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
instead of arrow functions or provide an optional
'name' parameter when registering it with 'use'.
[15:15:12.820] INFO (@chatally/core): Registered middleware '<unnamed>'
[15:15:12.821] INFO (@chatally/core): Registered middleware 'echo'
[15:15:12.821] INFO (@chatally/core): Registered middleware 'throws'
[15:15:12.822] INFO (@chatally/core): Registered middleware 'echo'
[15:15:12.822] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
[15:29:30.933] INFO (@chatally/core): Registered middleware '<unnamed>'
[15:29:30.934] INFO (@chatally/core): Registered middleware 'echo'
[15:29:30.934] INFO (@chatally/core): Registered middleware 'throws'
[15:29:30.935] INFO (@chatally/core): Registered middleware 'echo'
[15:29:30.935] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
instead of arrow functions or provide an optional
'name' parameter when registering it with 'use'.
[15:15:12.822] INFO (@chatally/core): Registered middleware '<unnamed>'
[15:15:12.822] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
[15:29:30.935] INFO (@chatally/core): Registered middleware '<unnamed>'
[15:29:30.935] WARN (@chatally/core): ⚠️ For better traceability, prefer using named functions
instead of arrow functions or provide an optional
'name' parameter when registering it with 'use'.
[15:15:12.822] INFO (@chatally/core): Registered middleware '<unnamed>'
✓ lib/application.test.js  (7 tests) 22ms
[15:29:30.935] INFO (@chatally/core): Registered middleware '<unnamed>'
✓ lib/application.test.js  (7 tests) 14ms
 Test Files  1 passed (1)
 Tests  7 passed (7)
 Start at  15:15:11
 Duration  1.09s (transform 269ms, setup 0ms, collect 317ms, tests 22ms, environment 0ms, prepare 322ms)
 Start at  15:29:29
 Duration  1.12s (transform 161ms, setup 0ms, collect 206ms, tests 14ms, environment 0ms, prepare 462ms)
> @chatally/core@0.0.10 tsc
> @chatally/core@0.0.11 tsc
> tsc
# @chatally/core
## 0.0.11
### Patch Changes
- 6eba307: Updated README and package.json files
- Updated dependencies [6eba307]
- @chatally/logger@0.0.9
## 0.0.10

@@ -4,0 +12,0 @@

@@ -14,5 +14,3 @@ import type { EventEmitter } from 'node:events'

*/
export declare class Application<
D extends Record<string, unknown>,
> extends EventEmitter<ApplicationEvents<D>> {
export declare class Application<D> extends EventEmitter<ApplicationEvents<D>> {
/**

@@ -19,0 +17,0 @@ * Create a ChatAlly application that dispatches incoming chat requests from

@@ -21,3 +21,3 @@ /**

interface _Action {
id: string
command: string
title: string

@@ -24,0 +24,0 @@ description?: string

@@ -9,3 +9,3 @@ import type { Logger } from '@chatally/logger'

*/
export type Middleware<D> =
export type Middleware<D = unknown> =
| ((params: Context<D>) => unknown)

@@ -12,0 +12,0 @@ | ((params: Context<D>) => Promise<unknown>)

{
"name": "@chatally/core",
"type": "module",
"version": "0.0.10",
"version": "0.0.11",
"description": "ChatAlly Core Modules",
"license": "MIT",
"homepage": "https://chatally.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/chatally/chatally.git"
},
"keywords": [
"app",
"application",
"chat",
"chatbot",
"framework",
"middleware"
"application",
"framework"
],

@@ -15,0 +18,0 @@ "exports": {

# @chatally/core
## ChatAlly Core
**ChatAlly Core** contains the application components and types for creating a chatbot application. It resembles the structure of an Express web server, but for chat applications.
## Getting started
The whole framework is very modular and extendible. It provides some middleware and servers (which are used to communicate with chat clients like WhatsApp or Signal), that you can use to create your individual chat application.
[See all ChatAlly packages](https://www.npmjs.com/search?q=chatally).
Help the community and publish your own ChatAlly modules with the tag `chatally`.
## Usage
Install the package and for testing a console chat server

@@ -8,0 +14,0 @@