New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kamboja-core

Package Overview
Dependencies
Maintainers
1
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kamboja-core - npm Package Compare versions

Comparing version 0.5.0-alpha.2ef874e4 to 0.5.0-alpha.3421a6a8

lib/framework/invocation-base.d.ts

2

lib/framework/base-controller.d.ts
import { HttpRequest } from "../http";
import { Handshake } from "../socket";
import { Validator } from "../validator";
import { InvocationBase } from "./invocation-base";
export interface BaseController {
context: HttpRequest | Handshake;
invocation: InvocationBase;
validator: Validator;
}

@@ -7,2 +7,3 @@ export * from "./application";

export * from "./invocation";
export * from "./invocation-base";
export * from "./kamboja-option";

@@ -9,0 +10,0 @@ export * from "./log-type";

3

lib/framework/invocation.d.ts

@@ -7,3 +7,4 @@ import { ActionResult } from "./action-result";

import { Facade } from "../index";
export declare abstract class Invocation {
import { InvocationBase } from "./invocation-base";
export declare abstract class Invocation implements InvocationBase {
abstract proceed(): Promise<ActionResult>;

@@ -10,0 +11,0 @@ context: HttpRequest | Handshake;

@@ -1,29 +0,13 @@

/// <reference types="node" />
import { HttpMethod } from "./http-method";
import { AuthUser } from "../security";
import * as Url from "url";
export interface HttpRequest {
contextType: "HttpRequest";
httpVersion: string;
httpMethod: HttpMethod;
headers: {
[key: string]: string;
};
cookies: {
[key: string]: string;
};
params: {
[key: string]: string;
};
user: AuthUser;
body: any;
referrer: string;
url: Url.Url;
route: string;
getHeader(key: string): string | undefined;
getCookie(key: string): string | undefined;
getParam(key: string): string | undefined;
getAccepts(key: string | string[]): string | boolean;
isAuthenticated(): boolean;
getUserRole(): string;
route: string;
}

@@ -1,2 +0,2 @@

export { Application, BaseController, Engine, Facility, Invocation, KambojaOption, LogType, MethodDecorator, Middleware, MiddlewaresType, Response, MiddlewareFunction } from "./framework";
export { Application, BaseController, Engine, Facility, Invocation, KambojaOption, LogType, MethodDecorator, Middleware, MiddlewaresType, Response, MiddlewareFunction, InvocationBase } from "./framework";
export { Cookie, CookieOptions, HttpError, HttpMethod, HttpRequest } from "./http";

@@ -3,0 +3,0 @@ export { DependencyResolver, IdentifierResolver, PathResolver } from "./resolver";

{
"name": "kamboja-core",
"version": "0.5.0-alpha.2ef874e4",
"version": "0.5.0-alpha.3421a6a8",
"description": "Core library of KambojaJS",

@@ -24,3 +24,3 @@ "main": "lib/index.js",

"@types/node": "^8.0.28",
"kecubung": "0.5.0-alpha.2ef874e4",
"kecubung": "0.5.0-alpha.3421a6a8",
"lodash": "^4.17.4",

@@ -27,0 +27,0 @@ "reflect-metadata": "^0.1.10",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc