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

@twilio-labs/serverless-runtime-types

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@twilio-labs/serverless-runtime-types - npm Package Compare versions

Comparing version

to
1.1.3

7

index.d.ts

@@ -1,6 +0,5 @@

import TwilioLib = require('twilio');
import { RuntimeInstance } from './types';
import { RuntimeInstance, TwilioResponse, GlobalTwilio } from './types';
declare global {
var Twilio: typeof TwilioLib;
var Twilio: GlobalTwilio;
var Runtime: RuntimeInstance;

@@ -10,3 +9,3 @@

interface Global {
Twilio: typeof TwilioLib;
Twilio: GlobalTwilio;
Runtime: RuntimeInstance;

@@ -13,0 +12,0 @@ }

{
"name": "@twilio-labs/serverless-runtime-types",
"version": "1.1.2",
"version": "1.1.3",
"description": "TypeScript definitions to define globals for the Twilio Serverless runtime",

@@ -5,0 +5,0 @@ "main": "index.js",

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

import twilio from 'twilio';
import * as twilio from 'twilio';
import { ServiceContext } from 'twilio/lib/rest/sync/v1/service';

@@ -14,2 +14,9 @@

export interface TwilioResponse {
setStatusCode(code: number): void;
setBody(body: string | object): void;
appendHeader(key: string, value: string): void;
setHeaders(headers: { [key: string]: string }): void;
}
export type RuntimeInstance = {

@@ -39,1 +46,6 @@ getAssets(): ResourceMap;

) => void | Promise<void>;
export type ResponseConstructor = new (...args: any[]) => TwilioResponse;
export type GlobalTwilio = Omit<typeof twilio, 'default'> & {
Response: ResponseConstructor;
};