@contrail/entity-types
Advanced tools
Comparing version 1.1.50-1 to 1.1.50-2
@@ -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; |
{ | ||
"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", |
44865
1345