@contrail/entity-types 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,15 +31,25 @@ export interface AppVersion extends BaseManagedEntity {
31
31
  appRuntime?: AppRuntime;
32
32
  frameworkVersion?: number;
33
33
  }
34
- export declare class ConfigProperty {
34
+ export interface ConfigProperty {
35
35
  slug: string;
36
36
  propertyType: PropertyType;
37
37
  options?: any[];
38
38
  label: string;
39
39
  }
40
- export declare class TriggerKeyDefinition {
40
+ export interface TriggerKeyDefinition {
41
41
  name: string;
42
42
  description?: string;
43
43
  triggerKey: string;
44
44
  external?: boolean;
45
45
  }
46
+ export interface ExternalLink {
47
+ name: string;
48
+ label: string;
49
+ img?: string;
50
+ extraAttributes: ExternalLinkExtraAttribute[];
51
+ }
52
+ export interface ExternalLinkExtraAttribute {
53
+ name: string;
54
+ value: any;
55
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TriggerKeyDefinition = exports.ConfigProperty = exports.AppRuntime = exports.AppVersionStatus = void 0;
3
+ exports.AppRuntime = exports.AppVersionStatus = void 0;
4
4
  var AppVersionStatus;
5
5
  (function (AppVersionStatus) {
6
6
  AppVersionStatus["PUBLISHING"] = "PUBLISHING";
@@ -15,17 +15,3 @@ var AppRuntime;
15
15
  AppRuntime["DOCKER"] = "DOCKER";
16
16
  AppRuntime["NODE"] = "NODE";
17
17
  })(AppRuntime = exports.AppRuntime || (exports.AppRuntime = {}));
18
- class ConfigProperty {
19
- slug;
20
- propertyType;
21
- options;
22
- label;
23
- }
24
- exports.ConfigProperty = ConfigProperty;
25
- class TriggerKeyDefinition {
26
- name;
27
- description;
28
- triggerKey;
29
- external;
30
- }
31
- exports.TriggerKeyDefinition = TriggerKeyDefinition;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",