@contrail/entity-types
Advanced tools
Comparing version 1.1.52 to 1.1.53
@@ -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; |
"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; |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44802
68
1343