@contrail/entity-types 1.1.21 → 1.1.23

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.
Files changed (50) hide show
  1. package/README.md +11 -11
  2. package/lib/app-api-key.d.ts +15 -15
  3. package/lib/app-api-key.js +2 -2
  4. package/lib/app-code-package.d.ts +17 -17
  5. package/lib/app-code-package.js +2 -2
  6. package/lib/app-extension-definition.d.ts +32 -31
  7. package/lib/app-extension-definition.js +35 -34
  8. package/lib/app-extension.d.ts +23 -23
  9. package/lib/app-extension.js +23 -23
  10. package/lib/app-org.d.ts +20 -20
  11. package/lib/app-org.js +11 -11
  12. package/lib/app-version.d.ts +57 -57
  13. package/lib/app-version.js +17 -17
  14. package/lib/app.d.ts +27 -27
  15. package/lib/app.js +2 -2
  16. package/lib/asset.d.ts +16 -16
  17. package/lib/asset.js +2 -2
  18. package/lib/base-managed-entity.d.ts +11 -11
  19. package/lib/base-managed-entity.js +2 -2
  20. package/lib/content-custom-size.d.ts +14 -14
  21. package/lib/content-custom-size.js +2 -2
  22. package/lib/content.d.ts +25 -25
  23. package/lib/content.js +2 -2
  24. package/lib/contentholder-content.d.ts +5 -5
  25. package/lib/contentholder-content.js +2 -2
  26. package/lib/file.d.ts +14 -14
  27. package/lib/file.js +2 -2
  28. package/lib/index.d.ts +21 -21
  29. package/lib/index.js +37 -37
  30. package/lib/item.d.ts +20 -20
  31. package/lib/item.js +2 -2
  32. package/lib/org-managed-entity.d.ts +5 -5
  33. package/lib/org-managed-entity.js +2 -2
  34. package/lib/org.d.ts +13 -13
  35. package/lib/org.js +16 -16
  36. package/lib/project-item.d.ts +9 -9
  37. package/lib/project-item.js +2 -2
  38. package/lib/project.d.ts +4 -4
  39. package/lib/project.js +2 -2
  40. package/lib/property-type.d.ts +31 -31
  41. package/lib/property-type.js +2 -2
  42. package/lib/type-managed-entity.d.ts +8 -8
  43. package/lib/type-managed-entity.js +2 -2
  44. package/lib/user.d.ts +49 -49
  45. package/lib/user.js +54 -54
  46. package/lib/workspace-managed-entity.d.ts +5 -5
  47. package/lib/workspace-managed-entity.js +2 -2
  48. package/package.json +23 -23
  49. package/lib/schedule.d.ts +0 -22
  50. package/lib/schedule.js +0 -26
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # Types Entity
2
-
3
- This module includes type definitions for VibeIQ's core types.
4
-
5
- ### Usage
6
- ```js
7
- import Item from '@contrail/entity-types';
8
-
9
- interface MyItem extends Item {
10
- myCustomProp: string;
11
- }
1
+ # Types Entity
2
+
3
+ This module includes type definitions for VibeIQ's core types.
4
+
5
+ ### Usage
6
+ ```js
7
+ import Item from '@contrail/entity-types';
8
+
9
+ interface MyItem extends Item {
10
+ myCustomProp: string;
11
+ }
12
12
  ```
@@ -1,15 +1,15 @@
1
- import { OrgManagedEntity } from "./org-managed-entity";
2
- import { AppOrg } from "./app-org";
3
- export interface AppApiKey extends OrgManagedEntity {
4
- id: string;
5
- createdOn?: Date;
6
- updatedOn?: Date;
7
- createdById?: string;
8
- updatedById?: string;
9
- createdBy?: any;
10
- updatedBy?: any;
11
- orgId?: string;
12
- appOrgId?: string;
13
- appOrg?: AppOrg;
14
- apiKey?: string;
15
- }
1
+ import { OrgManagedEntity } from "./org-managed-entity";
2
+ import { AppOrg } from "./app-org";
3
+ export interface AppApiKey extends OrgManagedEntity {
4
+ id: string;
5
+ createdOn?: Date;
6
+ updatedOn?: Date;
7
+ createdById?: string;
8
+ updatedById?: string;
9
+ createdBy?: any;
10
+ updatedBy?: any;
11
+ orgId?: string;
12
+ appOrgId?: string;
13
+ appOrg?: AppOrg;
14
+ apiKey?: string;
15
+ }
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,17 +1,17 @@
1
- import { App } from './app';
2
- import { BaseManagedEntity } from './base-managed-entity';
3
- export interface AppCodePackage extends BaseManagedEntity {
4
- id: string;
5
- createdOn?: Date;
6
- updatedOn?: Date;
7
- createdById?: string;
8
- updatedById?: string;
9
- createdBy?: any;
10
- updatedBy?: any;
11
- orgId?: string;
12
- appId?: string;
13
- app?: App;
14
- s3Location?: string;
15
- uploadURL?: string;
16
- downloadURL?: string;
17
- }
1
+ import { App } from './app';
2
+ import { BaseManagedEntity } from './base-managed-entity';
3
+ export interface AppCodePackage extends BaseManagedEntity {
4
+ id: string;
5
+ createdOn?: Date;
6
+ updatedOn?: Date;
7
+ createdById?: string;
8
+ updatedById?: string;
9
+ createdBy?: any;
10
+ updatedBy?: any;
11
+ orgId?: string;
12
+ appId?: string;
13
+ app?: App;
14
+ s3Location?: string;
15
+ uploadURL?: string;
16
+ downloadURL?: string;
17
+ }
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,31 +1,32 @@
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
- }
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
+ widgetHeight?: any;
32
+ }
@@ -1,34 +1,35 @@
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;
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
+ widgetHeight;
34
+ }
35
+ exports.AppExtensionDefinition = AppExtensionDefinition;
@@ -1,23 +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
- }
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
+ }
@@ -1,23 +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;
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;
package/lib/app-org.d.ts CHANGED
@@ -1,20 +1,20 @@
1
- import { OrgManagedEntity } from "./org-managed-entity";
2
- import { App } from "./app";
3
- import { AppVersion } from "./app-version";
4
- import { AppApiKey } from './app-api-key';
5
- export declare enum AppOrgStatus {
6
- INSTALLING = "INSTALLING",
7
- FAILED_INSTALLING = "FAILED_INSTALLING",
8
- READY = "READY",
9
- DELETING = "DELETING",
10
- FAILED_DELETING = "FAILED_DELETING"
11
- }
12
- export interface AppOrg extends OrgManagedEntity {
13
- status: AppOrgStatus;
14
- appId?: string;
15
- app?: App;
16
- appVersionId?: string;
17
- appVersion?: AppVersion;
18
- apiKey?: AppApiKey;
19
- appConfig?: any;
20
- }
1
+ import { OrgManagedEntity } from "./org-managed-entity";
2
+ import { App } from "./app";
3
+ import { AppVersion } from "./app-version";
4
+ import { AppApiKey } from './app-api-key';
5
+ export declare enum AppOrgStatus {
6
+ INSTALLING = "INSTALLING",
7
+ FAILED_INSTALLING = "FAILED_INSTALLING",
8
+ READY = "READY",
9
+ DELETING = "DELETING",
10
+ FAILED_DELETING = "FAILED_DELETING"
11
+ }
12
+ export interface AppOrg extends OrgManagedEntity {
13
+ status: AppOrgStatus;
14
+ appId?: string;
15
+ app?: App;
16
+ appVersionId?: string;
17
+ appVersion?: AppVersion;
18
+ apiKey?: AppApiKey;
19
+ appConfig?: any;
20
+ }
package/lib/app-org.js CHANGED
@@ -1,11 +1,11 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppOrgStatus = void 0;
4
- var AppOrgStatus;
5
- (function (AppOrgStatus) {
6
- AppOrgStatus["INSTALLING"] = "INSTALLING";
7
- AppOrgStatus["FAILED_INSTALLING"] = "FAILED_INSTALLING";
8
- AppOrgStatus["READY"] = "READY";
9
- AppOrgStatus["DELETING"] = "DELETING";
10
- AppOrgStatus["FAILED_DELETING"] = "FAILED_DELETING";
11
- })(AppOrgStatus = exports.AppOrgStatus || (exports.AppOrgStatus = {}));
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppOrgStatus = void 0;
4
+ var AppOrgStatus;
5
+ (function (AppOrgStatus) {
6
+ AppOrgStatus["INSTALLING"] = "INSTALLING";
7
+ AppOrgStatus["FAILED_INSTALLING"] = "FAILED_INSTALLING";
8
+ AppOrgStatus["READY"] = "READY";
9
+ AppOrgStatus["DELETING"] = "DELETING";
10
+ AppOrgStatus["FAILED_DELETING"] = "FAILED_DELETING";
11
+ })(AppOrgStatus = exports.AppOrgStatus || (exports.AppOrgStatus = {}));
@@ -1,57 +1,57 @@
1
- import { BaseManagedEntity } from "./base-managed-entity";
2
- import { App } from "./app";
3
- import { AppCodePackage } from "./app-code-package";
4
- import { PropertyType } from "./property-type";
5
- import { AppOrg } from "./app-org";
6
- export declare enum AppVersionStatus {
7
- PUBLISHING = "PUBLISHING",
8
- FAILED_PUBLISHING = "FAILED_PUBLISHING",
9
- PUBLISHED = "PUBLISHED",
10
- ARCHIVING = "ARCHIVING",
11
- FAILED_ARCHIVING = "FAILED_ARCHIVING",
12
- ARCHIVED = "ARCHIVED"
13
- }
14
- export declare enum AppRuntime {
15
- DOCKER = "DOCKER",
16
- NODE = "NODE"
17
- }
18
- export interface AppVersion extends BaseManagedEntity {
19
- orgId?: string;
20
- appId?: string;
21
- app?: App;
22
- appOrgs?: AppOrg[];
23
- versionNumber: number;
24
- semver: string;
25
- status: AppVersionStatus;
26
- eventWorkflowTriggerKeyMapping: string;
27
- configProperties?: ConfigProperty[];
28
- triggerKeyDefinitions?: TriggerKeyDefinition[];
29
- dockerImageRef?: string;
30
- appCodePackageId?: string;
31
- appCodePackage?: AppCodePackage;
32
- appRuntime?: AppRuntime;
33
- frameworkVersion?: number;
34
- }
35
- export interface ConfigProperty {
36
- slug: string;
37
- propertyType: PropertyType;
38
- options?: any[];
39
- label: string;
40
- }
41
- export interface TriggerKeyDefinition {
42
- name: string;
43
- description?: string;
44
- triggerKey: string;
45
- external?: boolean;
46
- }
47
- export interface ExternalLink {
48
- name: string;
49
- label: string;
50
- link: string;
51
- img?: string;
52
- extraAttributes: ExternalLinkExtraAttribute[];
53
- }
54
- export interface ExternalLinkExtraAttribute {
55
- name: string;
56
- value: any;
57
- }
1
+ import { BaseManagedEntity } from "./base-managed-entity";
2
+ import { App } from "./app";
3
+ import { AppCodePackage } from "./app-code-package";
4
+ import { PropertyType } from "./property-type";
5
+ import { AppOrg } from "./app-org";
6
+ export declare enum AppVersionStatus {
7
+ PUBLISHING = "PUBLISHING",
8
+ FAILED_PUBLISHING = "FAILED_PUBLISHING",
9
+ PUBLISHED = "PUBLISHED",
10
+ ARCHIVING = "ARCHIVING",
11
+ FAILED_ARCHIVING = "FAILED_ARCHIVING",
12
+ ARCHIVED = "ARCHIVED"
13
+ }
14
+ export declare enum AppRuntime {
15
+ DOCKER = "DOCKER",
16
+ NODE = "NODE"
17
+ }
18
+ export interface AppVersion extends BaseManagedEntity {
19
+ orgId?: string;
20
+ appId?: string;
21
+ app?: App;
22
+ appOrgs?: AppOrg[];
23
+ versionNumber: number;
24
+ semver: string;
25
+ status: AppVersionStatus;
26
+ eventWorkflowTriggerKeyMapping: string;
27
+ configProperties?: ConfigProperty[];
28
+ triggerKeyDefinitions?: TriggerKeyDefinition[];
29
+ dockerImageRef?: string;
30
+ appCodePackageId?: string;
31
+ appCodePackage?: AppCodePackage;
32
+ appRuntime?: AppRuntime;
33
+ frameworkVersion?: number;
34
+ }
35
+ export interface ConfigProperty {
36
+ slug: string;
37
+ propertyType: PropertyType;
38
+ options?: any[];
39
+ label: string;
40
+ }
41
+ export interface TriggerKeyDefinition {
42
+ name: string;
43
+ description?: string;
44
+ triggerKey: string;
45
+ external?: boolean;
46
+ }
47
+ export interface ExternalLink {
48
+ name: string;
49
+ label: string;
50
+ link: string;
51
+ img?: string;
52
+ extraAttributes: ExternalLinkExtraAttribute[];
53
+ }
54
+ export interface ExternalLinkExtraAttribute {
55
+ name: string;
56
+ value: any;
57
+ }
@@ -1,17 +1,17 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppRuntime = exports.AppVersionStatus = void 0;
4
- var AppVersionStatus;
5
- (function (AppVersionStatus) {
6
- AppVersionStatus["PUBLISHING"] = "PUBLISHING";
7
- AppVersionStatus["FAILED_PUBLISHING"] = "FAILED_PUBLISHING";
8
- AppVersionStatus["PUBLISHED"] = "PUBLISHED";
9
- AppVersionStatus["ARCHIVING"] = "ARCHIVING";
10
- AppVersionStatus["FAILED_ARCHIVING"] = "FAILED_ARCHIVING";
11
- AppVersionStatus["ARCHIVED"] = "ARCHIVED";
12
- })(AppVersionStatus = exports.AppVersionStatus || (exports.AppVersionStatus = {}));
13
- var AppRuntime;
14
- (function (AppRuntime) {
15
- AppRuntime["DOCKER"] = "DOCKER";
16
- AppRuntime["NODE"] = "NODE";
17
- })(AppRuntime = exports.AppRuntime || (exports.AppRuntime = {}));
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AppRuntime = exports.AppVersionStatus = void 0;
4
+ var AppVersionStatus;
5
+ (function (AppVersionStatus) {
6
+ AppVersionStatus["PUBLISHING"] = "PUBLISHING";
7
+ AppVersionStatus["FAILED_PUBLISHING"] = "FAILED_PUBLISHING";
8
+ AppVersionStatus["PUBLISHED"] = "PUBLISHED";
9
+ AppVersionStatus["ARCHIVING"] = "ARCHIVING";
10
+ AppVersionStatus["FAILED_ARCHIVING"] = "FAILED_ARCHIVING";
11
+ AppVersionStatus["ARCHIVED"] = "ARCHIVED";
12
+ })(AppVersionStatus = exports.AppVersionStatus || (exports.AppVersionStatus = {}));
13
+ var AppRuntime;
14
+ (function (AppRuntime) {
15
+ AppRuntime["DOCKER"] = "DOCKER";
16
+ AppRuntime["NODE"] = "NODE";
17
+ })(AppRuntime = exports.AppRuntime || (exports.AppRuntime = {}));
package/lib/app.d.ts CHANGED
@@ -1,27 +1,27 @@
1
- import { BaseManagedEntity } from "./base-managed-entity";
2
- import { AppCodePackage } from "./app-code-package";
3
- import { AppOrg } from "./app-org";
4
- import { AppVersion, ConfigProperty, TriggerKeyDefinition, AppRuntime } from "./app-version";
5
- export interface App extends BaseManagedEntity {
6
- name: string;
7
- identifier: string;
8
- installable?: boolean;
9
- latestAppVersionId?: string;
10
- latestAppVersion?: AppVersion;
11
- version: string;
12
- thumbnail?: string;
13
- description?: string;
14
- publisher: string;
15
- public: boolean;
16
- hidden?: boolean;
17
- privateOrgId?: string;
18
- eventWorkflowTriggerKeyMapping: string;
19
- configProperties?: ConfigProperty[];
20
- appOrgs?: AppOrg[];
21
- triggerKeyDefinitions?: TriggerKeyDefinition[];
22
- dockerImageRef?: string;
23
- appCodePackageId?: string;
24
- appCodePackage?: AppCodePackage;
25
- appRuntime?: AppRuntime;
26
- frameworkVersion?: number;
27
- }
1
+ import { BaseManagedEntity } from "./base-managed-entity";
2
+ import { AppCodePackage } from "./app-code-package";
3
+ import { AppOrg } from "./app-org";
4
+ import { AppVersion, ConfigProperty, TriggerKeyDefinition, AppRuntime } from "./app-version";
5
+ export interface App extends BaseManagedEntity {
6
+ name: string;
7
+ identifier: string;
8
+ installable?: boolean;
9
+ latestAppVersionId?: string;
10
+ latestAppVersion?: AppVersion;
11
+ version: string;
12
+ thumbnail?: string;
13
+ description?: string;
14
+ publisher: string;
15
+ public: boolean;
16
+ hidden?: boolean;
17
+ privateOrgId?: string;
18
+ eventWorkflowTriggerKeyMapping: string;
19
+ configProperties?: ConfigProperty[];
20
+ appOrgs?: AppOrg[];
21
+ triggerKeyDefinitions?: TriggerKeyDefinition[];
22
+ dockerImageRef?: string;
23
+ appCodePackageId?: string;
24
+ appCodePackage?: AppCodePackage;
25
+ appRuntime?: AppRuntime;
26
+ frameworkVersion?: number;
27
+ }
package/lib/app.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/lib/asset.d.ts CHANGED
@@ -1,16 +1,16 @@
1
- import { TypeManagedEntity } from "./type-managed-entity";
2
- import { Content } from './content';
3
- export interface Asset extends TypeManagedEntity {
4
- workspaceId?: string;
5
- name?: string;
6
- contentId: string;
7
- content?: Content;
8
- copyFileId?: string;
9
- fileName?: string;
10
- contentType?: string;
11
- fileSize?: string;
12
- largeViewableDownloadUrl?: string;
13
- mediumViewableDownloadUrl?: string;
14
- smallViewableDownloadUrl?: string;
15
- tinyViewableDownloadUrl?: string;
16
- }
1
+ import { TypeManagedEntity } from "./type-managed-entity";
2
+ import { Content } from './content';
3
+ export interface Asset extends TypeManagedEntity {
4
+ workspaceId?: string;
5
+ name?: string;
6
+ contentId: string;
7
+ content?: Content;
8
+ copyFileId?: string;
9
+ fileName?: string;
10
+ contentType?: string;
11
+ fileSize?: string;
12
+ largeViewableDownloadUrl?: string;
13
+ mediumViewableDownloadUrl?: string;
14
+ smallViewableDownloadUrl?: string;
15
+ tinyViewableDownloadUrl?: string;
16
+ }
package/lib/asset.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });