@contrail/entity-types 1.1.23 → 1.1.24
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.
- package/README.md +11 -11
- package/lib/app-api-key.d.ts +15 -15
- package/lib/app-api-key.js +2 -2
- package/lib/app-code-package.d.ts +17 -17
- package/lib/app-code-package.js +2 -2
- package/lib/app-extension-definition.d.ts +32 -32
- package/lib/app-extension-definition.js +35 -35
- package/lib/app-extension.d.ts +23 -23
- package/lib/app-extension.js +23 -23
- package/lib/app-org.d.ts +20 -20
- package/lib/app-org.js +11 -11
- package/lib/app-version.d.ts +57 -57
- package/lib/app-version.js +17 -17
- package/lib/app.d.ts +27 -27
- package/lib/app.js +2 -2
- package/lib/asset.d.ts +16 -16
- package/lib/asset.js +2 -2
- package/lib/base-managed-entity.d.ts +11 -11
- package/lib/base-managed-entity.js +2 -2
- package/lib/content-custom-size.d.ts +14 -14
- package/lib/content-custom-size.js +2 -2
- package/lib/content.d.ts +25 -25
- package/lib/content.js +2 -2
- package/lib/contentholder-content.d.ts +5 -5
- package/lib/contentholder-content.js +2 -2
- package/lib/file.d.ts +14 -14
- package/lib/file.js +2 -2
- package/lib/index.d.ts +21 -21
- package/lib/index.js +37 -37
- package/lib/item.d.ts +20 -20
- package/lib/item.js +2 -2
- package/lib/org-managed-entity.d.ts +5 -5
- package/lib/org-managed-entity.js +2 -2
- package/lib/org.d.ts +13 -13
- package/lib/org.js +16 -16
- package/lib/project-item.d.ts +9 -9
- package/lib/project-item.js +2 -2
- package/lib/project.d.ts +4 -4
- package/lib/project.js +2 -2
- package/lib/property-type.d.ts +31 -31
- package/lib/property-type.js +2 -2
- package/lib/schedule.d.ts +22 -0
- package/lib/schedule.js +26 -0
- package/lib/type-managed-entity.d.ts +8 -8
- package/lib/type-managed-entity.js +2 -2
- package/lib/user.d.ts +75 -49
- package/lib/user.js +82 -54
- package/lib/workspace-managed-entity.d.ts +5 -5
- package/lib/workspace-managed-entity.js +2 -2
- package/package.json +23 -23
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
|
```
|
package/lib/app-api-key.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/lib/app-api-key.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 });
|
|
@@ -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
|
+
}
|
package/lib/app-code-package.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 });
|
|
@@ -1,32 +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
|
-
widgetHeight?: any;
|
|
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
|
+
widgetHeight?: any;
|
|
32
|
+
}
|
|
@@ -1,35 +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
|
-
widgetHeight;
|
|
34
|
-
}
|
|
35
|
-
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;
|
package/lib/app-extension.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/lib/app-extension.js
CHANGED
|
@@ -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 = {}));
|
package/lib/app-version.d.ts
CHANGED
|
@@ -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
|
+
}
|
package/lib/app-version.js
CHANGED
|
@@ -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 });
|