@contrail/entity-types
Advanced tools
Comparing version 1.1.28 to 1.1.29
@@ -15,3 +15,3 @@ import { App } from "./app"; | ||
} | ||
export declare class AppExtensionDefinition implements BaseManagedEntity { | ||
export interface AppExtensionDefinition extends BaseManagedEntity { | ||
id?: string; | ||
@@ -18,0 +18,0 @@ createdOn?: Date; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AppExtensionDefinition = exports.AppExtensionUserApps = exports.AppExtensionType = void 0; | ||
exports.AppExtensionUserApps = exports.AppExtensionType = void 0; | ||
var AppExtensionType; | ||
@@ -17,20 +17,1 @@ (function (AppExtensionType) { | ||
})(AppExtensionUserApps = exports.AppExtensionUserApps || (exports.AppExtensionUserApps = {})); | ||
class AppExtensionDefinition { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
createdById; | ||
updatedById; | ||
name; | ||
identifier; | ||
appId; | ||
app; | ||
appVersionId; | ||
appVersion; | ||
extensionType; | ||
userApps; | ||
modalDimensions; | ||
iframeUrl; | ||
widgetHeight; | ||
} | ||
exports.AppExtensionDefinition = AppExtensionDefinition; |
@@ -5,3 +5,3 @@ import { App } from "./app"; | ||
import { OrgManagedEntity } from "./org-managed-entity"; | ||
export declare class AppExtension implements OrgManagedEntity { | ||
export interface AppExtension extends OrgManagedEntity { | ||
id?: string; | ||
@@ -8,0 +8,0 @@ createdOn?: Date; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AppExtension = void 0; | ||
class AppExtension { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
createdById; | ||
updatedById; | ||
orgId; | ||
orgSlug; | ||
name; | ||
identifier; | ||
appId; | ||
app; | ||
appVersionId; | ||
appVersion; | ||
extensionType; | ||
userApps; | ||
modalDimensions; | ||
iframeUrl; | ||
} | ||
exports.AppExtension = AppExtension; |
import { BaseManagedEntity } from "./base-managed-entity"; | ||
export declare class Org implements BaseManagedEntity { | ||
export interface Org extends BaseManagedEntity { | ||
id?: string; | ||
@@ -4,0 +4,0 @@ name: string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Org = void 0; | ||
class Org { | ||
id; | ||
name; | ||
slug; | ||
thumbnail; | ||
url; | ||
description; | ||
isArchived; | ||
domainWhitelist; | ||
createdOn; | ||
updatedOn; | ||
} | ||
exports.Org = Org; |
@@ -20,3 +20,3 @@ import { OrgManagedEntity } from "./org-managed-entity"; | ||
export declare const BOARD_APP_SUBSCRIBED_TO_CONST = "board-app"; | ||
export declare class Subscription implements OrgManagedEntity { | ||
export interface Subscription extends OrgManagedEntity { | ||
id: string; | ||
@@ -23,0 +23,0 @@ name?: string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Subscription = exports.BOARD_APP_SUBSCRIBED_TO_CONST = exports.PLAN_APP_SUBSCRIBED_TO_CONST = exports.SHOWCASE_APP_SUBSCRIBED_TO_CONST = exports.SubscriptionChannel = exports.SubscriptionType = void 0; | ||
exports.BOARD_APP_SUBSCRIBED_TO_CONST = exports.PLAN_APP_SUBSCRIBED_TO_CONST = exports.SHOWCASE_APP_SUBSCRIBED_TO_CONST = exports.SubscriptionChannel = exports.SubscriptionType = void 0; | ||
var SubscriptionType; | ||
@@ -23,19 +23,1 @@ (function (SubscriptionType) { | ||
exports.BOARD_APP_SUBSCRIBED_TO_CONST = 'board-app'; | ||
class Subscription { | ||
id; | ||
name; | ||
createdOn; | ||
updatedOn; | ||
createdById; | ||
updatedById; | ||
createdBy; | ||
updatedBy; | ||
orgId; | ||
subscriberRef; | ||
subscriber; | ||
subscribedToRef; | ||
subscribedTo; | ||
channels; | ||
subscriptionTypes; | ||
} | ||
exports.Subscription = Subscription; |
@@ -8,3 +8,3 @@ import { BaseManagedEntity } from "./base-managed-entity"; | ||
} | ||
export declare class UserOrg implements OrgManagedEntity { | ||
export interface UserOrg extends OrgManagedEntity { | ||
id?: string; | ||
@@ -31,3 +31,3 @@ createdOn?: Date; | ||
} | ||
export declare class PlatformUser implements BaseManagedEntity { | ||
export interface PlatformUser extends BaseManagedEntity { | ||
id?: string; | ||
@@ -40,3 +40,3 @@ createdOn?: Date; | ||
} | ||
export declare class User implements BaseManagedEntity { | ||
export interface User extends BaseManagedEntity { | ||
id?: string; | ||
@@ -53,3 +53,3 @@ createdOn?: Date; | ||
} | ||
export declare class Group implements OrgManagedEntity { | ||
export interface Group extends OrgManagedEntity { | ||
id: string; | ||
@@ -66,3 +66,3 @@ createdOn?: Date; | ||
} | ||
export declare class GroupPrincipal implements OrgManagedEntity { | ||
export interface GroupPrincipal extends OrgManagedEntity { | ||
id: string; | ||
@@ -69,0 +69,0 @@ createdOn?: Date; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.GroupPrincipal = exports.Group = exports.User = exports.PlatformUser = exports.PlatformRole = exports.UserOrg = exports.UserOrgRole = void 0; | ||
exports.PlatformRole = exports.UserOrgRole = void 0; | ||
var UserOrgRole; | ||
@@ -9,19 +9,2 @@ (function (UserOrgRole) { | ||
})(UserOrgRole = exports.UserOrgRole || (exports.UserOrgRole = {})); | ||
class UserOrg { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
userId; | ||
orgId; | ||
role; | ||
userEmail; | ||
orgSlug; | ||
user; | ||
first; | ||
last; | ||
domain; | ||
full; | ||
org; | ||
} | ||
exports.UserOrg = UserOrg; | ||
var PlatformRole; | ||
@@ -34,51 +17,1 @@ (function (PlatformRole) { | ||
})(PlatformRole = exports.PlatformRole || (exports.PlatformRole = {})); | ||
class PlatformUser { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
userId; | ||
roles; | ||
user; | ||
} | ||
exports.PlatformUser = PlatformUser; | ||
class User { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
firstName; | ||
lastName; | ||
email; | ||
isAppUser = false; | ||
isSsoUser = false; | ||
platformRoles; | ||
orgs; | ||
} | ||
exports.User = User; | ||
class Group { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
createdById; | ||
updatedById; | ||
createdBy; | ||
updatedBy; | ||
orgId; | ||
name; | ||
groupPrincipals; | ||
} | ||
exports.Group = Group; | ||
class GroupPrincipal { | ||
id; | ||
createdOn; | ||
updatedOn; | ||
createdById; | ||
updatedById; | ||
createdBy; | ||
updatedBy; | ||
orgId; | ||
groupId; | ||
group; | ||
principalReference; | ||
principal; | ||
} | ||
exports.GroupPrincipal = GroupPrincipal; |
{ | ||
"name": "@contrail/entity-types", | ||
"version": "1.1.28", | ||
"version": "1.1.29", | ||
"description": "A types library for Vibeiq entities.", | ||
@@ -10,2 +10,3 @@ "main": "lib/index.js", | ||
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", | ||
"generate-docs": "npx typedoc src/index.ts --disableSources --excludeInternal --plugin typedoc-plugin-extras --favicon home-hero.svg", | ||
"lint": "tslint -p tsconfig.json" | ||
@@ -22,4 +23,6 @@ }, | ||
"js-yaml": "^4.1.0", | ||
"typedoc": "^0.25.7", | ||
"typedoc-plugin-extras": "^3.0.0", | ||
"typescript": "^4.0.0" | ||
} | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
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
1894031
109
2248
5
3