Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@contrail/entity-types

Package Overview
Dependencies
Maintainers
0
Versions
59
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.52 to 1.1.53

lib/share-links.d.ts

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;

3

lib/user.d.ts

@@ -7,4 +7,3 @@ import { BaseManagedEntity } from "./base-managed-entity";

member = "MEMBER",
guest = "GUEST",
viewer = "VIEWER"
guest = "GUEST"
}

@@ -11,0 +10,0 @@ export declare enum SystemRole {

@@ -9,3 +9,2 @@ "use strict";

UserOrgRole["guest"] = "GUEST";
UserOrgRole["viewer"] = "VIEWER";
})(UserOrgRole = exports.UserOrgRole || (exports.UserOrgRole = {}));

@@ -12,0 +11,0 @@ var SystemRole;

{
"name": "@contrail/entity-types",
"version": "1.1.52",
"version": "1.1.53",
"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