Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@contrail/entity-types

Package Overview
Dependencies
Maintainers
0
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrail/entity-types - npm Package Compare versions

Comparing version 1.1.37 to 1.1.38

lib/project-configuration.d.ts

10

lib/app-access-grant.d.ts
import { App } from './app';
import { BaseManagedEntity } from './base-managed-entity';
import { Org } from './org';
export interface AppAccessGrantInterface extends BaseManagedEntity {
issuerId: string;
export interface AppAccessGrant extends BaseManagedEntity {
issuerReference: string;
issuer?: Org;
recipientId: string;
recipientReference: string;
recipient?: Org;
appId: string;
app?: App;
scope: AppAccessGrantScope;
}
export declare enum AppAccessGrantScope {
INSTALL = "INSTALL"
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppAccessGrantScope = void 0;
var AppAccessGrantScope;
(function (AppAccessGrantScope) {
AppAccessGrantScope["INSTALL"] = "INSTALL";
})(AppAccessGrantScope = exports.AppAccessGrantScope || (exports.AppAccessGrantScope = {}));

@@ -1,6 +0,8 @@

import { AppCodePackage } from "./app-code-package";
import { AppOrg } from "./app-org";
import { AppVersion, ConfigProperty, TriggerKeyDefinition } from "./app-version";
import { BaseManagedEntity } from "./base-managed-entity";
import { AppAccessGrant } from './app-access-grant';
import { AppCodePackage } from './app-code-package';
import { AppOrg } from './app-org';
import { AppVersion, ConfigProperty, TriggerKeyDefinition } from './app-version';
import { BaseManagedEntity } from './base-managed-entity';
export interface App extends BaseManagedEntity {
ownerReference: string;
name: string;

@@ -16,4 +18,2 @@ identifier: string;

public: boolean;
hidden?: boolean;
privateOrgId?: string;
eventWorkflowTriggerKeyMapping: string;

@@ -26,2 +26,3 @@ configProperties?: ConfigProperty[];

frameworkVersion?: number;
appAccessGrants?: AppAccessGrant[];
}

@@ -6,4 +6,8 @@ import { BaseManagedEntity } from "./base-managed-entity";

admin = "ADMIN",
member = "MEMBER"
member = "MEMBER",
guest = "GUEST"
}
export declare enum SystemRole {
SYSTEM = "SYSTEM"
}
export interface UserOrg extends OrgManagedEntity {

@@ -10,0 +14,0 @@ id?: string;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PlatformRole = exports.UserOrgRole = void 0;
exports.PlatformRole = exports.SystemRole = exports.UserOrgRole = void 0;
var UserOrgRole;

@@ -8,3 +8,8 @@ (function (UserOrgRole) {

UserOrgRole["member"] = "MEMBER";
UserOrgRole["guest"] = "GUEST";
})(UserOrgRole = exports.UserOrgRole || (exports.UserOrgRole = {}));
var SystemRole;
(function (SystemRole) {
SystemRole["SYSTEM"] = "SYSTEM";
})(SystemRole = exports.SystemRole || (exports.SystemRole = {}));
var PlatformRole;

@@ -11,0 +16,0 @@ (function (PlatformRole) {

{
"name": "@contrail/entity-types",
"version": "1.1.37",
"version": "1.1.38",
"description": "A types library for Vibeiq entities.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc