@contrail/entity-types 1.1.14 → 1.1.16

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.
@@ -0,0 +1,31 @@
1
+ import { App } from "./app";
2
+ import { AppVersion } from "./app-version";
3
+ import { BaseManagedEntity } from "./base-managed-entity";
4
+ export declare enum AppExtensionType {
5
+ DOCUMENT_AUTOMATION = "DOCUMENT_AUTOMATION",
6
+ CONTEXTUAL_ACTION = "CONTEXTUAL_ACTION",
7
+ CONTEXTUAL_INFORMATION_WIDGET = "CONTEXTUAL_INFORMATION_WIDGET"
8
+ }
9
+ export declare enum AppExtensionUserApps {
10
+ BOARDS = "BOARDS",
11
+ SHOWCASE = "SHOWCASE",
12
+ PLAN = "PLAN",
13
+ ALL = "ALL"
14
+ }
15
+ export declare class AppExtensionDefinition implements BaseManagedEntity {
16
+ id?: string;
17
+ createdOn?: Date;
18
+ updatedOn?: Date;
19
+ createdById?: string;
20
+ updatedById?: string;
21
+ name: string;
22
+ identifier: string;
23
+ appId: string;
24
+ app?: App;
25
+ appVersionId: string;
26
+ appVersion?: AppVersion;
27
+ extensionType?: AppExtensionType;
28
+ userApps?: AppExtensionUserApps[];
29
+ modalDimensions?: any;
30
+ iframeUrl?: string;
31
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppExtensionDefinition = exports.AppExtensionUserApps = exports.AppExtensionType = void 0;
4
+ var AppExtensionType;
5
+ (function (AppExtensionType) {
6
+ AppExtensionType["DOCUMENT_AUTOMATION"] = "DOCUMENT_AUTOMATION";
7
+ AppExtensionType["CONTEXTUAL_ACTION"] = "CONTEXTUAL_ACTION";
8
+ AppExtensionType["CONTEXTUAL_INFORMATION_WIDGET"] = "CONTEXTUAL_INFORMATION_WIDGET";
9
+ })(AppExtensionType = exports.AppExtensionType || (exports.AppExtensionType = {}));
10
+ var AppExtensionUserApps;
11
+ (function (AppExtensionUserApps) {
12
+ AppExtensionUserApps["BOARDS"] = "BOARDS";
13
+ AppExtensionUserApps["SHOWCASE"] = "SHOWCASE";
14
+ AppExtensionUserApps["PLAN"] = "PLAN";
15
+ AppExtensionUserApps["ALL"] = "ALL";
16
+ })(AppExtensionUserApps = exports.AppExtensionUserApps || (exports.AppExtensionUserApps = {}));
17
+ class AppExtensionDefinition {
18
+ id;
19
+ createdOn;
20
+ updatedOn;
21
+ createdById;
22
+ updatedById;
23
+ name;
24
+ identifier;
25
+ appId;
26
+ app;
27
+ appVersionId;
28
+ appVersion;
29
+ extensionType;
30
+ userApps;
31
+ modalDimensions;
32
+ iframeUrl;
33
+ }
34
+ exports.AppExtensionDefinition = AppExtensionDefinition;
@@ -0,0 +1,23 @@
1
+ import { App } from "./app";
2
+ import { AppExtensionType, AppExtensionUserApps } from "./app-extension-definition";
3
+ import { AppVersion } from "./app-version";
4
+ import { OrgManagedEntity } from "./org-managed-entity";
5
+ export declare class AppExtension implements OrgManagedEntity {
6
+ id?: string;
7
+ createdOn?: Date;
8
+ updatedOn?: Date;
9
+ createdById?: string;
10
+ updatedById?: string;
11
+ orgId?: string;
12
+ orgSlug?: string;
13
+ name: string;
14
+ identifier: string;
15
+ appId: string;
16
+ app?: App;
17
+ appVersionId: string;
18
+ appVersion?: AppVersion;
19
+ extensionType?: AppExtensionType;
20
+ userApps?: AppExtensionUserApps[];
21
+ modalDimensions?: any;
22
+ iframeUrl?: string;
23
+ }
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppExtension = void 0;
4
+ class AppExtension {
5
+ id;
6
+ createdOn;
7
+ updatedOn;
8
+ createdById;
9
+ updatedById;
10
+ orgId;
11
+ orgSlug;
12
+ name;
13
+ identifier;
14
+ appId;
15
+ app;
16
+ appVersionId;
17
+ appVersion;
18
+ extensionType;
19
+ userApps;
20
+ modalDimensions;
21
+ iframeUrl;
22
+ }
23
+ exports.AppExtension = AppExtension;
@@ -2,6 +2,7 @@ export interface BaseManagedEntity {
2
2
  id?: string;
3
3
  createdOn?: Date;
4
4
  updatedOn?: Date;
5
+ readUpdatedOn?: Date;
5
6
  persistent?: boolean;
6
7
  createdById?: string;
7
8
  updatedById?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/entity-types",
3
- "version": "1.1.14",
3
+ "version": "1.1.16",
4
4
  "description": "A types library for Vibeiq entities.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",