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

@contrail/entity-types

Package Overview
Dependencies
Maintainers
0
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrail/entity-types - npm Package Compare versions

Comparing version 1.1.50-1 to 1.1.50-2

8

lib/client.d.ts

@@ -0,1 +1,9 @@

export declare class InvalidPolicyError extends Error {
}
export declare class TimeoutError extends Error {
}
export declare class ApiError extends Error {
details: any;
constructor(message: any, details: any);
}
export declare abstract class EntityReference {

@@ -2,0 +10,0 @@ id: string;

17

lib/client.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntitiesClient = exports.EntitiesClientBatchDeleteOptions = exports.EntitiesClientDeleteOptions = exports.EntitiesClientBatchUpdateOptions = exports.EntitiesClientBatchCreateOptions = exports.EntitiesClientCreateOptions = exports.EntitiesClientGetOptions = exports.DEFAULT_API_VERSION = exports.API_VERSION = exports.SortOrderOptions = exports.EntityReference = void 0;
exports.EntitiesClient = exports.EntitiesClientBatchDeleteOptions = exports.EntitiesClientDeleteOptions = exports.EntitiesClientBatchUpdateOptions = exports.EntitiesClientBatchCreateOptions = exports.EntitiesClientCreateOptions = exports.EntitiesClientGetOptions = exports.DEFAULT_API_VERSION = exports.API_VERSION = exports.SortOrderOptions = exports.EntityReference = exports.ApiError = exports.TimeoutError = exports.InvalidPolicyError = void 0;
class InvalidPolicyError extends Error {
}
exports.InvalidPolicyError = InvalidPolicyError;
class TimeoutError extends Error {
}
exports.TimeoutError = TimeoutError;
class ApiError extends Error {
details;
constructor(message, details) {
super(message);
this.details = details;
this.details = details;
}
}
exports.ApiError = ApiError;
class EntityReference {

@@ -5,0 +20,0 @@ id;

2

package.json
{
"name": "@contrail/entity-types",
"version": "1.1.50-1",
"version": "1.1.50-2",
"description": "A types library for Vibeiq entities.",

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

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