@contrail/entity-types 1.1.36 → 1.1.39
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/lib/app-access-grant.d.ts +15 -0
- package/lib/app-access-grant.js +7 -0
- package/lib/app.d.ts +7 -6
- package/lib/base-managed-entity.d.ts +0 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { App } from './app';
|
|
2
|
+
import { BaseManagedEntity } from './base-managed-entity';
|
|
3
|
+
import { Org } from './org';
|
|
4
|
+
export interface AppAccessGrant extends BaseManagedEntity {
|
|
5
|
+
issuerReference: string;
|
|
6
|
+
issuer?: Org;
|
|
7
|
+
recipientReference: string;
|
|
8
|
+
recipient?: Org;
|
|
9
|
+
appId: string;
|
|
10
|
+
app?: App;
|
|
11
|
+
scope: AppAccessGrantScope;
|
|
12
|
+
}
|
|
13
|
+
export declare enum AppAccessGrantScope {
|
|
14
|
+
INSTALL = "INSTALL"
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppAccessGrantScope = void 0;
|
|
4
|
+
var AppAccessGrantScope;
|
|
5
|
+
(function (AppAccessGrantScope) {
|
|
6
|
+
AppAccessGrantScope["INSTALL"] = "INSTALL";
|
|
7
|
+
})(AppAccessGrantScope = exports.AppAccessGrantScope || (exports.AppAccessGrantScope = {}));
|
package/lib/app.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { AppAccessGrant } from './app-access-grant';
|
|
2
|
+
import { AppCodePackage } from './app-code-package';
|
|
3
|
+
import { AppOrg } from './app-org';
|
|
4
|
+
import { AppVersion, ConfigProperty, TriggerKeyDefinition } from './app-version';
|
|
5
|
+
import { BaseManagedEntity } from './base-managed-entity';
|
|
5
6
|
export interface App extends BaseManagedEntity {
|
|
7
|
+
ownerReference: string;
|
|
6
8
|
name: string;
|
|
7
9
|
identifier: string;
|
|
8
10
|
installable?: boolean;
|
|
@@ -13,8 +15,6 @@ export interface App extends BaseManagedEntity {
|
|
|
13
15
|
description?: string;
|
|
14
16
|
publisher: string;
|
|
15
17
|
public: boolean;
|
|
16
|
-
hidden?: boolean;
|
|
17
|
-
privateOrgId?: string;
|
|
18
18
|
eventWorkflowTriggerKeyMapping: string;
|
|
19
19
|
configProperties?: ConfigProperty[];
|
|
20
20
|
appOrgs?: AppOrg[];
|
|
@@ -22,4 +22,5 @@ export interface App extends BaseManagedEntity {
|
|
|
22
22
|
appCodePackageId?: string;
|
|
23
23
|
appCodePackage?: AppCodePackage;
|
|
24
24
|
frameworkVersion?: number;
|
|
25
|
+
appAccessGrants?: AppAccessGrant[];
|
|
25
26
|
}
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./app-access-grant"), exports);
|
|
17
18
|
__exportStar(require("./app-api-key"), exports);
|
|
18
19
|
__exportStar(require("./app-code-package"), exports);
|
|
19
20
|
__exportStar(require("./app-org"), exports);
|