@contrail/entity-types
Advanced tools
Comparing version 1.1.7 to 1.1.8
@@ -34,3 +34,3 @@ import { BaseManagedEntity } from "@contrail/core-types"; | ||
} | ||
export declare class ConfigProperty { | ||
export interface ConfigProperty { | ||
slug: string; | ||
@@ -41,3 +41,3 @@ propertyType: PropertyType; | ||
} | ||
export declare class TriggerKeyDefinition { | ||
export interface TriggerKeyDefinition { | ||
name: string; | ||
@@ -48,1 +48,11 @@ description?: string; | ||
} | ||
export interface ExternalLink { | ||
name: string; | ||
label: string; | ||
img?: string; | ||
extraAttributes: ExternalLinkExtraAttribute[]; | ||
} | ||
export interface ExternalLinkExtraAttribute { | ||
name: string; | ||
value: any; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TriggerKeyDefinition = exports.ConfigProperty = exports.AppRuntime = exports.AppVersionStatus = void 0; | ||
exports.AppRuntime = exports.AppVersionStatus = void 0; | ||
var AppVersionStatus; | ||
@@ -18,15 +18,1 @@ (function (AppVersionStatus) { | ||
})(AppRuntime = exports.AppRuntime || (exports.AppRuntime = {})); | ||
class ConfigProperty { | ||
slug; | ||
propertyType; | ||
options; | ||
label; | ||
} | ||
exports.ConfigProperty = ConfigProperty; | ||
class TriggerKeyDefinition { | ||
name; | ||
description; | ||
triggerKey; | ||
external; | ||
} | ||
exports.TriggerKeyDefinition = TriggerKeyDefinition; |
{ | ||
"name": "@contrail/entity-types", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"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
12402
349